diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2007-08-23 13:11:15 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2007-08-23 13:11:15 +0000 |
commit | 0465788d7ed4c44012f499f1e61560b0ff1fb3e1 (patch) | |
tree | dc239b5b5291615d7e43fa9217b3bc07d11c1aef | |
parent | d89763fa16649351aab8b45a58e4662074699168 (diff) |
missing 'u' option for update caused gnu cvs client to not function
with our server mode. Unfortunatly we dont really support rcs diffs
for update just yet.
-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); } |