diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-07-23 11:20:50 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-07-23 11:20:50 +0000 |
commit | 106728ba284c6febfd03a575c8297455f940f939 (patch) | |
tree | aaddbd4c50b705db0bd5031b6183d3eed9cd6b01 /usr.bin/cvs | |
parent | 316e7b4ce9ddeaa9df048f14eb629be01439aa55 (diff) |
remove debug messages, i always seem to forget these.
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/proto.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/cvs/proto.c b/usr.bin/cvs/proto.c index 52c49df64d2..24cbae6f22d 100644 --- a/usr.bin/cvs/proto.c +++ b/usr.bin/cvs/proto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: proto.c,v 1.64 2005/07/23 11:19:46 joris Exp $ */ +/* $OpenBSD: proto.c,v 1.65 2005/07/23 11:20:49 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -715,7 +715,6 @@ cvs_sendreq(struct cvsroot *root, u_int rid, const char *arg) if (req->req_flags & CVS_REQF_RESP) ret = cvs_getresp(root); - printf("cvs_sendreq returning %d\n", ret); return (ret); } @@ -757,7 +756,6 @@ cvs_getresp(struct cvsroot *root) } ret = cvs_resp_handle(root, cvs_proto_buf); - printf("(%s) (%d)\n", cvs_proto_buf, ret); nbcmd++; } while (ret == 0); |