diff options
author | 2005-02-04 17:50:20 +0000 | |
---|---|---|
committer | 2005-02-04 17:50:20 +0000 | |
commit | 560bea415500bc7ce50ee9b2d286823b98d61cd0 (patch) | |
tree | b3ece3ccee4cf5455e8a74f00c9f4edd4c3746c9 | |
parent | sync (diff) | |
download | wireguard-openbsd-560bea415500bc7ce50ee9b2d286823b98d61cd0.tar.xz wireguard-openbsd-560bea415500bc7ce50ee9b2d286823b98d61cd0.zip |
remove duplicate trace message which gets output in cvs_sendfile()
-rw-r--r-- | usr.bin/cvs/update.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/cvs/update.c b/usr.bin/cvs/update.c index 131f3de59c6..f418a9548bc 100644 --- a/usr.bin/cvs/update.c +++ b/usr.bin/cvs/update.c @@ -1,4 +1,4 @@ -/* $OpenBSD: update.c,v 1.14 2005/01/13 07:04:16 jfb Exp $ */ +/* $OpenBSD: update.c,v 1.15 2005/02/04 17:50:20 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -177,7 +177,6 @@ cvs_update_file(CVSFILE *cf, void *arg) break; case CVS_FST_ADDED: case CVS_FST_MODIFIED: - cvs_log(LP_TRACE, "Sending file `%s' to server", fname); ret = cvs_sendreq(root, CVS_REQ_MODIFIED, fname); if (ret == 0) ret = cvs_sendfile(root, fpath); |