diff options
author | 2005-06-09 07:24:39 +0000 | |
---|---|---|
committer | 2005-06-09 07:24:39 +0000 | |
commit | ade67a35949908a020eecbb850d1ce204a67b9c5 (patch) | |
tree | 84ab13bdb979c7a2a469b662ee234d774fa3dad2 | |
parent | don't need vlan.h here (diff) | |
download | wireguard-openbsd-ade67a35949908a020eecbb850d1ce204a67b9c5.tar.xz wireguard-openbsd-ade67a35949908a020eecbb850d1ce204a67b9c5.zip |
LP_ERR -> LP_ABORT to match gnu/usr.bin/cvs output; okay joris@.
-rw-r--r-- | usr.bin/cvs/checkout.c | 6 |
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); } |