diff options
author | 2009-03-22 18:41:25 +0000 | |
---|---|---|
committer | 2009-03-22 18:41:25 +0000 | |
commit | a3d408c482bc005c386df7fdfa8b36b474330439 (patch) | |
tree | 5943b66399afe5f683e501fc28f5b167cd4c9b2f | |
parent | Avoid the usage of uninitialized value, which even might result in a memory (diff) | |
download | wireguard-openbsd-a3d408c482bc005c386df7fdfa8b36b474330439.tar.xz wireguard-openbsd-a3d408c482bc005c386df7fdfa8b36b474330439.zip |
style
-rw-r--r-- | usr.bin/cvs/tag.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/tag.c b/usr.bin/cvs/tag.c index 747abfcf764..e15a09c0a0f 100644 --- a/usr.bin/cvs/tag.c +++ b/usr.bin/cvs/tag.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tag.c,v 1.77 2009/03/22 18:40:55 tobias Exp $ */ +/* $OpenBSD: tag.c,v 1.78 2009/03/22 18:41:25 tobias Exp $ */ /* * Copyright (c) 2006 Xavier Santolaria <xsa@openbsd.org> * @@ -363,14 +363,14 @@ cvs_tag_local(struct cvs_file *cf) "couldn't tag added but un-commited file `%s'", cf->file_path); } - return; + break; case FILE_REMOVED: if (verbosity > 1) { cvs_log(LP_NOTICE, "skipping removed but un-commited file `%s'", cf->file_path); } - return; + break; case FILE_CHECKOUT: case FILE_MODIFIED: case FILE_PATCH: |