summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/file.c
diff options
context:
space:
mode:
authorJean-Francois Brousseau <jfb@cvs.openbsd.org>2004-07-29 17:51:07 +0000
committerJean-Francois Brousseau <jfb@cvs.openbsd.org>2004-07-29 17:51:07 +0000
commitd94d0e862f222c42614179f269c8064a5ab1bfaa (patch)
treea430fee5f532a0a06a121159e841d65e54341856 /usr.bin/cvs/file.c
parente13e6cde770745e98ca9b6ff6f9b93a2644301fc (diff)
Remove debugging statements
Diffstat (limited to 'usr.bin/cvs/file.c')
-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));