summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorJoris Vink <joris@cvs.openbsd.org>2005-04-18 21:10:40 +0000
committerJoris Vink <joris@cvs.openbsd.org>2005-04-18 21:10:40 +0000
commitfd5ebccce784c1143e9e10ed59b32b20135abaec (patch)
tree12add15111d3d4432e094f46394b48c26f4d182d /usr.bin
parent76ccdd4772eb85bdc3247825c6a72e7cf7f6b17c (diff)
more debugging leftovers
Diffstat (limited to 'usr.bin')
-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 8d4017317a5..4eac374bb86 100644
--- a/usr.bin/cvs/file.c
+++ b/usr.bin/cvs/file.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: file.c,v 1.62 2005/04/18 21:02:50 jfb Exp $ */
+/* $OpenBSD: file.c,v 1.63 2005/04/18 21:10:39 joris Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -876,8 +876,6 @@ cvs_file_lget(const char *path, int flags, CVSFILE *parent, struct cvs_ent *ent)
type = DT_UNKNOWN;
cwd = (strcmp(path, ".") == 0) ? 1 : 0;
- printf("lget(%s)\n", path);
-
ret = stat(path, &st);
if (ret == 0)
type = IFTODT(st.st_mode);