diff options
author | 2005-12-30 01:38:39 +0000 | |
---|---|---|
committer | 2005-12-30 01:38:39 +0000 | |
commit | 4d5fe2795f46ca18c6ad0142f88b9ab969bd0deb (patch) | |
tree | 46d38e89e06202ea44b5861e5fd5f79637983980 /usr.bin/cvs | |
parent | Some spaces->tab indentation fixes. (diff) | |
download | wireguard-openbsd-4d5fe2795f46ca18c6ad0142f88b9ab969bd0deb.tar.xz wireguard-openbsd-4d5fe2795f46ca18c6ad0142f88b9ab969bd0deb.zip |
pass LP_ABORT to cvs_vlog() instead of LP_ERR.
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/fatal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/fatal.c b/usr.bin/cvs/fatal.c index 2943ed9a395..9488878ec66 100644 --- a/usr.bin/cvs/fatal.c +++ b/usr.bin/cvs/fatal.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fatal.c,v 1.3 2005/12/24 04:05:40 joris Exp $ */ +/* $OpenBSD: fatal.c,v 1.4 2005/12/30 01:38:39 joris Exp $ */ /* * Copyright (c) 2002 Markus Friedl. All rights reserved. * @@ -37,7 +37,7 @@ fatal(const char *fmt,...) va_list args; va_start(args, fmt); - cvs_vlog(LP_ERR, fmt, args); + cvs_vlog(LP_ABORT, fmt, args); va_end(args); exit(255); } |