diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-04-12 14:58:41 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-04-12 14:58:41 +0000 |
commit | 4b03ee4a3e530b1453fb0907ac8166baf63bf053 (patch) | |
tree | 0dc798db78780d1cd2e362c04dbcd0e8f3ae7f47 /usr.bin/cvs/status.c | |
parent | 77e328103b64f6514f65aa663caf3bee705dae4d (diff) |
introduce our own set of error codes used by the commands to report
what exactly went wrong in case of an error.
ok jfb@
Diffstat (limited to 'usr.bin/cvs/status.c')
-rw-r--r-- | usr.bin/cvs/status.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/cvs/status.c b/usr.bin/cvs/status.c index 911a6b29097..b0ea48ef2b6 100644 --- a/usr.bin/cvs/status.c +++ b/usr.bin/cvs/status.c @@ -1,4 +1,4 @@ -/* $OpenBSD: status.c,v 1.13 2005/04/11 18:02:58 joris Exp $ */ +/* $OpenBSD: status.c,v 1.14 2005/04/12 14:58:40 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -83,7 +83,7 @@ cvs_status_options(char *opt, int argc, char **argv, int *arg) verbose = 1; break; default: - return (1); + return (CVS_EX_USAGE); } } @@ -95,7 +95,7 @@ int cvs_status_sendflags(struct cvsroot *root) { if (verbose && (cvs_sendarg(root, "-v", 0) < 0)) - return (-1); + return (CVS_EX_PROTO); return (0); } @@ -136,7 +136,7 @@ cvs_status_file(CVSFILE *cfp, void *arg) if (root->cr_method != CVS_METHOD_LOCAL) { if ((entp != NULL) && (cvs_sendentry(root, entp) < 0)) { cvs_ent_free(entp); - return (-1); + return (CVS_EX_PROTO); } switch (cfp->cf_cvstat) { @@ -169,7 +169,7 @@ cvs_status_file(CVSFILE *cfp, void *arg) if (rf == NULL) { if (entp != NULL) cvs_ent_free(entp); - return (-1); + return (CVS_EX_DATA); } rcs_close(rf); |