diff options
-rw-r--r-- | usr.bin/cvs/update.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/cvs/update.c b/usr.bin/cvs/update.c index 2e3dee7de0a..cf1729cfa74 100644 --- a/usr.bin/cvs/update.c +++ b/usr.bin/cvs/update.c @@ -1,4 +1,4 @@ -/* $OpenBSD: update.c,v 1.105 2007/07/05 23:03:32 joris Exp $ */ +/* $OpenBSD: update.c,v 1.106 2007/08/23 13:11:14 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -40,7 +40,7 @@ struct cvs_cmd cvs_cmd_update = { "Bring work tree in sync with repository", "[-ACdflPpR] [-D date | -r rev] [-I ign] [-j rev] [-k mode] " "[-t id] ...", - "ACD:dfI:j:k:lPpQqRr:t:", + "ACD:dfI:j:k:lPpQqRr:t:u", NULL, cvs_update }; @@ -93,6 +93,8 @@ cvs_update(int argc, char **argv) case 'r': cvs_specified_tag = optarg; break; + case 'u': + break; default: fatal("%s", cvs_cmd_update.cmd_synopsis); } |