diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-05-29 00:55:11 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-05-29 00:55:11 +0000 |
commit | abdcfc5fe266b7cc0011ad8f1d3729600f8e2d60 (patch) | |
tree | 508463d95cb6e61aa336b95c6aead15bea6fa5f1 /usr.bin/cvs | |
parent | fbb161023d1de62ec160e27606857ab4877e9c9a (diff) |
consistency in error messages ...
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/tag.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/cvs/tag.c b/usr.bin/cvs/tag.c index 0d6f90cbab1..18dab224416 100644 --- a/usr.bin/cvs/tag.c +++ b/usr.bin/cvs/tag.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tag.c,v 1.18 2005/05/24 07:38:46 xsa Exp $ */ +/* $OpenBSD: tag.c,v 1.19 2005/05/29 00:55:10 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * Copyright (c) 2004 Joris Vink <joris@openbsd.org> @@ -151,7 +151,8 @@ cvs_tag_init(struct cvs_cmd *cmd, int argc, char **argv, int *arg) tag_date = NULL; if (tag_oldname != NULL && tag_date != NULL) { - cvs_log(LP_ERROR, "-r and -D options are mutually exclusive"); + cvs_log(LP_ERROR, + "the -D and -r options are mutually exclusive"); return (CVS_EX_USAGE); } |