diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-05-12 03:26:56 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-05-12 03:26:56 +0000 |
commit | e584819a3e9093d9c45eabe4d4304a6385ce4106 (patch) | |
tree | ac668c0a3d66a671aa93462c9a2c519c3fb7e2c0 /gnu | |
parent | f71506129df6ee4cf6335e2b8429be95256ece56 (diff) |
fix usage string.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/rcs/co/co.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/usr.bin/rcs/co/co.c b/gnu/usr.bin/rcs/co/co.c index 720b60eb55f..62a74e47fb9 100644 --- a/gnu/usr.bin/rcs/co/co.c +++ b/gnu/usr.bin/rcs/co/co.c @@ -28,11 +28,14 @@ Report problems and direct all questions to: /* * $Log: co.c,v $ + * Revision 1.5 1996/05/12 03:26:55 mickey + * fix usage string. + * * Revision 1.4 1996/05/10 15:25:04 deraadt * Z not L * * Revision 1.3 1996/05/07 09:52:38 mickey - * fix comments s/$Id: co.c,v 1.4 1996/05/10 15:25:04 deraadt Exp $/Id/, and usage string. + * fix comments s/$Id: co.c,v 1.5 1996/05/12 03:26:55 mickey Exp $/Id/, and usage string. * * Revision 1.2 1996/04/19 12:40:04 mickey * -L<string> option added to support LOCALID behaviour. @@ -201,10 +204,10 @@ static struct hshentries *gendeltas; /* deltas to be generated */ static struct hshentry *targetdelta; /* final delta to be generated */ static struct stat workstat; -mainProg(coId, "co", "$Id: co.c,v 1.4 1996/05/10 15:25:04 deraadt Exp $") +mainProg(coId, "co", "$Id: co.c,v 1.5 1996/05/12 03:26:55 mickey Exp $") { static char const cmdusage[] = - "\nco usage: co -{fIlMpqru}[rev] -ddate -jjoins -ksubst -sstate -T -w[who] -Vn -xsuff -zzone -LlocalId file ..."; + "\nco usage: co -{fIlMpqru}[rev] -ddate -jjoins -ksubst -sstate -T -w[who] -Vn -xsuff -zzone -ZlocalId file ..."; char *a, **newargv; char const *author, *date, *rev, *state; |