diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-05-29 00:52:09 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-05-29 00:52:09 +0000 |
commit | fbb161023d1de62ec160e27606857ab4877e9c9a (patch) | |
tree | 34b0bde6f8ef0f1fa5fc68dbf515d0a62a90764d /usr.bin/cvs/annotate.c | |
parent | c4dfa5c54a608d7fad44ef7449cc69339704ff2c (diff) |
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); } |