=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/remote.c,v retrieving revision 1.2 retrieving revision 1.3 diff -c -r1.2 -r1.3 *** src/usr.bin/cvs/remote.c 2006/07/08 00:34:20 1.2 --- src/usr.bin/cvs/remote.c 2006/07/09 01:47:20 1.3 *************** *** 1,4 **** ! /* $OpenBSD: remote.c,v 1.2 2006/07/08 00:34:20 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink * --- 1,4 ---- ! /* $OpenBSD: remote.c,v 1.3 2006/07/09 01:47:20 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink * *************** *** 58,66 **** 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); } --- 58,63 ---- *************** *** 116,123 **** 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) --- 113,118 ---- *************** *** 144,151 **** 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)); --- 139,144 ---- *************** *** 177,184 **** time_t mtime; 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); --- 170,175 ----