diff options
author | 2008-06-11 20:55:34 +0000 | |
---|---|---|
committer | 2008-06-11 20:55:34 +0000 | |
commit | c638a04b1f53508577d23f739f44020db636f660 (patch) | |
tree | f65f65cead0803b10eb54606eacd7bb1db6c6583 /usr.bin/cvs/diff.c | |
parent | - on non-ieee, rename gamma to tgamma, the 'true' gamma (diff) | |
download | wireguard-openbsd-c638a04b1f53508577d23f739f44020db636f660.tar.xz wireguard-openbsd-c638a04b1f53508577d23f739f44020db636f660.zip |
do not count on files that are uptodate to be on disk in a remote setup.
Diffstat (limited to 'usr.bin/cvs/diff.c')
-rw-r--r-- | usr.bin/cvs/diff.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/cvs/diff.c b/usr.bin/cvs/diff.c index 3bae718ce0d..5e13804c322 100644 --- a/usr.bin/cvs/diff.c +++ b/usr.bin/cvs/diff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.139 2008/06/11 02:19:13 tobias Exp $ */ +/* $OpenBSD: diff.c,v 1.140 2008/06/11 20:55:34 joris Exp $ */ /* * Copyright (c) 2008 Tobias Stoeckmann <tobias@openbsd.org> * Copyright (c) 2006 Joris Vink <joris@openbsd.org> @@ -296,12 +296,12 @@ cvs_diff_local(struct cvs_file *cf) } break; default: - if (cf->fd == -1) { - if (!cvs_server_active) - cvs_log(LP_ERR, "cannot find %s", + if (cvs_server_active != 1 && cf->fd == -1) { + cvs_log(LP_ERR, "cannot find %s", cf->file_path); return; } + if (cf->file_rcs == NULL) { cvs_log(LP_ERR, "cannot find RCS file for %s", cf->file_path); |