diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2008-02-09 11:40:44 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2008-02-09 11:40:44 +0000 |
commit | 51a943d355af4439e4befa3c90c483eb31e854b3 (patch) | |
tree | aab326bc6cda0c178e248ab201897daa114f6154 /usr.bin/cvs/update.c | |
parent | 319a8108a74ced030f57257e72b02186828ce97e (diff) |
lets do -D for update as well
Diffstat (limited to 'usr.bin/cvs/update.c')
-rw-r--r-- | usr.bin/cvs/update.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/update.c b/usr.bin/cvs/update.c index 7e29e87aa76..749b9eb0938 100644 --- a/usr.bin/cvs/update.c +++ b/usr.bin/cvs/update.c @@ -1,4 +1,4 @@ -/* $OpenBSD: update.c,v 1.122 2008/02/08 21:44:32 joris Exp $ */ +/* $OpenBSD: update.c,v 1.123 2008/02/09 11:40:43 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -64,7 +64,7 @@ cvs_update(int argc, char **argv) break; case 'C': case 'D': - cvs_specified_tag = optarg; + cvs_specified_date = cvs_date_parse(optarg); break; case 'd': build_dirs = 1; |