diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2006-07-09 01:47:21 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2006-07-09 01:47:21 +0000 |
commit | 23d9e8e5405c501fceeb054f285d5968d1ba9114 (patch) | |
tree | 7beb49d05e4be7058e8c81034cde4372ec248370 /usr.bin/cvs/remote.c | |
parent | 9dc45c2d9db81ea578f057332e2b179f27cc8e66 (diff) |
more straightforward trace (-t) output, too much is just too noisy.
Diffstat (limited to 'usr.bin/cvs/remote.c')
-rw-r--r-- | usr.bin/cvs/remote.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/usr.bin/cvs/remote.c b/usr.bin/cvs/remote.c index 8d39288e9eb..4b1943fcc83 100644 --- a/usr.bin/cvs/remote.c +++ b/usr.bin/cvs/remote.c @@ -1,4 +1,4 @@ -/* $OpenBSD: remote.c,v 1.2 2006/07/08 00:34:20 joris Exp $ */ +/* $OpenBSD: remote.c,v 1.3 2006/07/09 01:47:20 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -58,9 +58,6 @@ cvs_remote_output(const char *data) else out = current_cvsroot->cr_srvin; - if (cvs_server_active == 0) - cvs_log(LP_TRACE, "cvs_remote_output(%s)", data); - fputs(data, out); fputs("\n", out); } @@ -116,8 +113,6 @@ cvs_remote_receive_file(size_t len) else in = current_cvsroot->cr_srvout; - cvs_log(LP_TRACE, "cvs_remote_receive_file(%ld)", len); - data = xmalloc(len); ret = fread(data, sizeof(char), len, in); if (ret != len) @@ -144,8 +139,6 @@ cvs_remote_send_file(const char *path) else out = current_cvsroot->cr_srvin; - cvs_log(LP_TRACE, "cvs_remote_send_file(%s)", path); - if ((fd = open(path, O_RDONLY)) == -1) fatal("cvs_remote_send_file: %s: %s", path, strerror(errno)); @@ -178,8 +171,6 @@ cvs_remote_classify_file(struct cvs_file *cf) struct stat st; CVSENTRIES *entlist; - cvs_log(LP_TRACE, "cvs_remote_classify_file(%s)", cf->file_path); - entlist = cvs_ent_open(cf->file_wd); cf->file_ent = cvs_ent_get(entlist, cf->file_name); cvs_ent_close(entlist, ENT_NOSYNC); |