diff options
author | 2005-05-29 00:52:08 +0000 | |
---|---|---|
committer | 2005-05-29 00:52:08 +0000 | |
commit | 60dea7226bdd051ac7d24a949cf1fdcac080670e (patch) | |
tree | 80cec7a313168a1ef94cbff3067136522d044fd3 /usr.bin/cvs/annotate.c | |
parent | handle -r option; (diff) | |
download | wireguard-openbsd-60dea7226bdd051ac7d24a949cf1fdcac080670e.tar.xz wireguard-openbsd-60dea7226bdd051ac7d24a949cf1fdcac080670e.zip |
correct error message...
Diffstat (limited to 'usr.bin/cvs/annotate.c')
-rw-r--r-- | usr.bin/cvs/annotate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/annotate.c b/usr.bin/cvs/annotate.c index 8f25bc324ec..971c81287b7 100644 --- a/usr.bin/cvs/annotate.c +++ b/usr.bin/cvs/annotate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: annotate.c,v 1.14 2005/05/24 04:12:25 jfb Exp $ */ +/* $OpenBSD: annotate.c,v 1.15 2005/05/29 00:52:08 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -98,7 +98,7 @@ cvs_annotate_options(struct cvs_cmd *cmd, int argc, char **argv, int *arg) if ((date != NULL) && (rev != NULL)) { cvs_log(LP_ERR, - "the -D and -d arguments are mutually exclusive"); + "the -D and -r arguments are mutually exclusive"); return (CVS_EX_USAGE); } |