diff options
author | 2008-06-12 07:29:54 +0000 | |
---|---|---|
committer | 2008-06-12 07:29:54 +0000 | |
commit | ea39c5a053413e2bdfde2085f2e5aa21101b4754 (patch) | |
tree | b72ec65d4f68c93a9f5e2ece5626d29aa206a7fc | |
parent | completely kill the need for TMP_DIR when running checkout, (diff) | |
download | wireguard-openbsd-ea39c5a053413e2bdfde2085f2e5aa21101b4754.tar.xz wireguard-openbsd-ea39c5a053413e2bdfde2085f2e5aa21101b4754.zip |
fix logic
-rw-r--r-- | usr.bin/cvs/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/file.c b/usr.bin/cvs/file.c index f2ac9e1fa0e..db9683263a5 100644 --- a/usr.bin/cvs/file.c +++ b/usr.bin/cvs/file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.243 2008/06/12 07:16:14 joris Exp $ */ +/* $OpenBSD: file.c,v 1.244 2008/06/12 07:29:54 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> @@ -294,7 +294,7 @@ cvs_file_walklist(struct cvs_flisthead *fl, struct cvs_recursion *cr) * During checkout -p, do not use any locally * available directories. */ - if (cvs_cmdop != CVS_OP_CHECKOUT || !print_stdout) + if (cvs_cmdop != CVS_OP_CHECKOUT && !print_stdout) if (stat(d, &st) == -1) { cvs_log(LP_ERRNO, "%s", d); goto next; |