diff options
author | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2007-10-09 12:20:25 +0000 |
---|---|---|
committer | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2007-10-09 12:20:25 +0000 |
commit | 0be4a986fe4fcae99e134b031b33da6304111d48 (patch) | |
tree | 45eaa3a94b0dc8653778535d89254a62a7093d8a | |
parent | 6596966881eb7126860514a3ad7922c81e6995f6 (diff) |
Do not warn user about files that are "no longer in the repository"
during cvs import.
OK niallo@
-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 8cf2ecd79fb..72ff91c3323 100644 --- a/usr.bin/cvs/file.c +++ b/usr.bin/cvs/file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.203 2007/10/05 19:28:23 gilles Exp $ */ +/* $OpenBSD: file.c,v 1.204 2007/10/09 12:20:24 tobias Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> @@ -815,7 +815,7 @@ cvs_file_classify(struct cvs_file *cf, const char *tag) "locally modified", cf->file_path); cf->file_status = FILE_CONFLICT; - } else { + } else if (cvs_cmdop != CVS_OP_IMPORT) { cvs_log(LP_NOTICE, "%s is no longer in the " "repository", |