diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-08-05 13:32:09 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-08-05 13:32:09 +0000 |
commit | 0716077c02489661fbe6cdb041ff8d81cd800b41 (patch) | |
tree | 8bfe5815156952ff8433f8ede9f29c207fe9e7e1 /usr.bin/cvs/cvs.h | |
parent | 76f425e0946950c6947472c9886d710557009e98 (diff) |
Adapt the logging so any messages generated by the server will be
prepended with a 'M' or 'E' command, depending on the log level, and
follow the GNU behaviour of printing the command name after the program
name in messages
Diffstat (limited to 'usr.bin/cvs/cvs.h')
-rw-r--r-- | usr.bin/cvs/cvs.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h index 3cc5c94c922..4c131219d1c 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.21 2004/08/05 13:24:37 jfb Exp $ */ +/* $OpenBSD: cvs.h,v 1.22 2004/08/05 13:32:08 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -223,7 +223,11 @@ typedef struct cvs_histfile { #ifdef CVS +extern char *cvs_command; extern char *cvs_editor; + +extern int cvs_cmdop; + #endif |