diff options
author | 2008-02-09 13:09:33 +0000 | |
---|---|---|
committer | 2008-02-09 13:09:33 +0000 | |
commit | 1e2d2d3bb15c836e58fb6dafdd16aa34d7dcc49e (patch) | |
tree | 0692a65b494ecb4af82fa460186006de5e18d131 /usr.bin/cvs | |
parent | simplify some stuff; (diff) | |
download | wireguard-openbsd-1e2d2d3bb15c836e58fb6dafdd16aa34d7dcc49e.tar.xz wireguard-openbsd-1e2d2d3bb15c836e58fb6dafdd16aa34d7dcc49e.zip |
missing break
spotted by tobias@
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/update.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/update.c b/usr.bin/cvs/update.c index 4a22497eba4..de422f54034 100644 --- a/usr.bin/cvs/update.c +++ b/usr.bin/cvs/update.c @@ -1,4 +1,4 @@ -/* $OpenBSD: update.c,v 1.125 2008/02/09 12:48:23 joris Exp $ */ +/* $OpenBSD: update.c,v 1.126 2008/02/09 13:09:33 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -70,6 +70,7 @@ cvs_update(int argc, char **argv) reset_tag = 1; break; case 'C': + break; case 'D': dateflag = optarg; cvs_specified_date = cvs_date_parse(dateflag); |