diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2006-04-25 03:21:17 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2006-04-25 03:21:17 +0000 |
commit | 2cba027f6a14a0e7504589129e6500770da7b202 (patch) | |
tree | ab396ffc0d622be23d2d125003767933fbd863dc /usr.bin/rcs/rcsclean.c | |
parent | 10bab5c18ebf12d04481d4039e25d1ec96fe6e78 (diff) |
The -r flag without an argument signifies HEAD for rcsclean.
OK xsa@ and joris@
Diffstat (limited to 'usr.bin/rcs/rcsclean.c')
-rw-r--r-- | usr.bin/rcs/rcsclean.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rcs/rcsclean.c b/usr.bin/rcs/rcsclean.c index 1201d0166ee..e7a7e51fdb6 100644 --- a/usr.bin/rcs/rcsclean.c +++ b/usr.bin/rcs/rcsclean.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcsclean.c,v 1.41 2006/04/24 16:20:33 jmc Exp $ */ +/* $OpenBSD: rcsclean.c,v 1.42 2006/04/25 03:21:16 ray Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -47,7 +47,7 @@ rcsclean_main(int argc, char **argv) rev_str = NULL; - while ((ch = rcs_getopt(argc, argv, "k:n::q::r:Tu::Vx::")) != -1) { + while ((ch = rcs_getopt(argc, argv, "k:n::q::r::Tu::Vx::")) != -1) { switch (ch) { case 'k': kflag = rcs_kflag_get(rcs_optarg); |