diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-04-12 15:18:14 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-04-12 15:18:14 +0000 |
commit | 1bbbd90b0e5d8fb9d46b64112c92fdbfd71a52e8 (patch) | |
tree | f13d172b650dc20fe4cb079146526eb81dc42e93 /usr.bin | |
parent | 4b03ee4a3e530b1453fb0907ac8166baf63bf053 (diff) |
tell about the CVS_EX_* error codes, as we do not use sysexits.h anymore;
ok joris@.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/cvs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c index 30045990316..3bdbf75c80c 100644 --- a/usr.bin/cvs/cvs.c +++ b/usr.bin/cvs/cvs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.c,v 1.51 2005/04/12 14:58:40 joris Exp $ */ +/* $OpenBSD: cvs.c,v 1.52 2005/04/12 15:18:13 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -80,7 +80,7 @@ static TAILQ_HEAD(, cvs_var) cvs_variables; * command supports, without the actual command's name. * * Command handlers are expected to return 0 if no error occurred, or one of - * the values known in sysexits.h in case of an error. In case the error + * the CVS_EX_* error codes in case of an error. In case the error * returned is 1, the command's usage string is printed to standard * error before returning. */ |