diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-08-05 13:39:02 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-08-05 13:39:02 +0000 |
commit | 2c9b68e921249b9b533ba5a4eec5e642130e1c5c (patch) | |
tree | eb7a7978721f99cffdeff67c1544f066aa43fd02 /usr.bin/cvs/log.h | |
parent | ec2b1798d5010477d8accf0b8af5073ceaff6b50 (diff) |
Add a new log level LP_ABORT, which modifies the behaviour of prefix
generation by outputting something similar to GNU CVS:
cvs [<command> aborted]: message
Diffstat (limited to 'usr.bin/cvs/log.h')
-rw-r--r-- | usr.bin/cvs/log.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/cvs/log.h b/usr.bin/cvs/log.h index f3c186ce593..21afc300647 100644 --- a/usr.bin/cvs/log.h +++ b/usr.bin/cvs/log.h @@ -1,4 +1,4 @@ -/* $OpenBSD: log.h,v 1.2 2004/07/27 16:19:41 jfb Exp $ */ +/* $OpenBSD: log.h,v 1.3 2004/08/05 13:39:01 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -53,8 +53,9 @@ #define LP_ERR LP_ERROR #define LP_ALERT 5 #define LP_ERRNO 6 +#define LP_ABORT 7 -#define LP_MAX 6 +#define LP_MAX 7 #define LP_ALL 255 /* filtering methods */ |