diff options
author | 2004-07-28 02:15:10 +0000 | |
---|---|---|
committer | 2004-07-28 02:15:10 +0000 | |
commit | 173ef4071ab804540410273930a4c05081149351 (patch) | |
tree | 452fb14c9470b2087fc69680ab565bf2f861e240 | |
parent | Fix $OpenBSD$ tag (diff) | |
download | wireguard-openbsd-173ef4071ab804540410273930a4c05081149351.tar.xz wireguard-openbsd-173ef4071ab804540410273930a4c05081149351.zip |
Remove a debugging message
-rw-r--r-- | usr.bin/cvs/root.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/cvs/root.c b/usr.bin/cvs/root.c index 815ab2da480..37cd04c1857 100644 --- a/usr.bin/cvs/root.c +++ b/usr.bin/cvs/root.c @@ -1,4 +1,4 @@ -/* $OpenBSD: root.c,v 1.6 2004/07/28 01:59:19 jfb Exp $ */ +/* $OpenBSD: root.c,v 1.7 2004/07/28 02:15:10 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -91,7 +91,6 @@ cvsroot_parse(const char *str) for (i = 0; i < cvs_rcsz; i++) { if (strcmp(str, cvs_rcache[i]->cr_str) == 0) { - printf("hitting cache for `%s'\n", str); cvs_rcache[i]->cr_ref++; return (cvs_rcache[i]); } |