summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjfb <jfb@openbsd.org>2004-07-29 17:51:06 +0000
committerjfb <jfb@openbsd.org>2004-07-29 17:51:06 +0000
commit11c7c35c5d947f0c82e68963148f41f058a43ef2 (patch)
tree2923b7bf561e5367dbc738581abd80be6a98c4b1
parentundefine DEBUG (diff)
downloadwireguard-openbsd-11c7c35c5d947f0c82e68963148f41f058a43ef2.tar.xz
wireguard-openbsd-11c7c35c5d947f0c82e68963148f41f058a43ef2.zip
Remove debugging statements
-rw-r--r--usr.bin/cvs/file.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/cvs/file.c b/usr.bin/cvs/file.c
index 68c3c949567..46229ca33a4 100644
--- a/usr.bin/cvs/file.c
+++ b/usr.bin/cvs/file.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: file.c,v 1.11 2004/07/29 17:31:23 jfb Exp $ */
+/* $OpenBSD: file.c,v 1.12 2004/07/29 17:51:06 jfb Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -380,7 +380,6 @@ cvs_file_getspec(char **fspec, int fsn, int flags)
for (i = 1; i < fsn; i++) {
for (c = 0; ; c++) {
if (common[c] != fspec[i][c]) {
- printf("backtracking!\n");
/* go back to last dir */
while ((c > 0) && (common[--c] != '/'))
common[c] = '\0';
@@ -388,7 +387,6 @@ cvs_file_getspec(char **fspec, int fsn, int flags)
}
}
}
- printf("common part = `%s'\n", common);
if (*common == '\0')
strlcpy(common, ".", sizeof(common));