summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/checkout.c
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2005-06-09 07:24:40 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2005-06-09 07:24:40 +0000
commite352837c597422f2ea229ab6e1d02b00bdc4d0f4 (patch)
treec9fc63230a2250ec478a139dd58425b7dbd53441 /usr.bin/cvs/checkout.c
parent33aed9ec274960cc95d359efcea91122c51078ce (diff)
LP_ERR -> LP_ABORT to match gnu/usr.bin/cvs output; okay joris@.
Diffstat (limited to 'usr.bin/cvs/checkout.c')
-rw-r--r--usr.bin/cvs/checkout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/checkout.c b/usr.bin/cvs/checkout.c
index cfcc1ff17e0..7f90d5831d1 100644
--- a/usr.bin/cvs/checkout.c
+++ b/usr.bin/cvs/checkout.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: checkout.c,v 1.30 2005/06/07 15:34:24 xsa Exp $ */
+/* $OpenBSD: checkout.c,v 1.31 2005/06/09 07:24:39 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -138,13 +138,13 @@ cvs_checkout_init(struct cvs_cmd *cmd, int argc, char **argv, int *arg)
co_nmod = argc;
if (!statmod && (argc == 0)) {
- cvs_log(LP_ERR,
+ cvs_log(LP_ABORT,
"must specify at least one module or directory");
return (-1);
}
if (statmod && (argc > 0)) {
- cvs_log(LP_ERR, "-c and -s must not get any arguments");
+ cvs_log(LP_ABORT, "-c and -s must not get any arguments");
return (-1);
}