diff options
author | 2007-07-18 08:17:27 +0000 | |
---|---|---|
committer | 2007-07-18 08:17:27 +0000 | |
commit | 0ab67f868b83765534c295e1b39e343e2a6753d5 (patch) | |
tree | abb8ca54e16ab2f37bda2c380104389fdad2ee90 | |
parent | - document the fact that mkfontscale is now run as well as mkfontdir and (diff) | |
download | wireguard-openbsd-0ab67f868b83765534c295e1b39e343e2a6753d5.tar.xz wireguard-openbsd-0ab67f868b83765534c295e1b39e343e2a6753d5.zip |
Support -r for the export command.
-rw-r--r-- | usr.bin/cvs/checkout.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/cvs/checkout.c b/usr.bin/cvs/checkout.c index 58d8384b089..dac4041abd0 100644 --- a/usr.bin/cvs/checkout.c +++ b/usr.bin/cvs/checkout.c @@ -1,4 +1,4 @@ -/* $OpenBSD: checkout.c,v 1.97 2007/07/03 13:22:42 joris Exp $ */ +/* $OpenBSD: checkout.c,v 1.98 2007/07/18 08:17:27 xsa Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -108,6 +108,9 @@ cvs_export(int argc, char **argv) break; case 'R': break; + case 'r': + cvs_specified_tag = optarg; + break; default: fatal("%s", cvs_cmd_export.cmd_synopsis); } |