From 0465788d7ed4c44012f499f1e61560b0ff1fb3e1 Mon Sep 17 00:00:00 2001 From: Joris Vink Date: Thu, 23 Aug 2007 13:11:15 +0000 Subject: 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. --- usr.bin/cvs/update.c | 6 ++++-- 1 file 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 * @@ -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); } -- cgit v1.2.3