summaryrefslogtreecommitdiff
path: root/sys/miscfs/fuse/fuse_lookup.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/miscfs/fuse/fuse_lookup.c')
-rw-r--r--sys/miscfs/fuse/fuse_lookup.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/sys/miscfs/fuse/fuse_lookup.c b/sys/miscfs/fuse/fuse_lookup.c
index d48f792c2df..45b762c70ab 100644
--- a/sys/miscfs/fuse/fuse_lookup.c
+++ b/sys/miscfs/fuse/fuse_lookup.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fuse_lookup.c,v 1.3 2013/06/12 22:55:02 tedu Exp $ */
+/* $OpenBSD: fuse_lookup.c,v 1.4 2013/08/10 00:12:45 syl Exp $ */
/*
* Copyright (c) 2012-2013 Sylvestre Gallon <ccna.syl@gmail.com>
*
@@ -26,12 +26,6 @@
#include "fusefs_node.h"
#include "fusefs.h"
-#ifdef FUSE_DEBUG_VNOP
-#define DPRINTF(fmt, arg...) printf("fuse vnop: " fmt, ##arg)
-#else
-#define DPRINTF(fmt, arg...)
-#endif
-
int fusefs_lookup(void *);
int
@@ -62,9 +56,6 @@ fusefs_lookup(void *v)
lockparent = flags & LOCKPARENT;
wantparent = flags & (LOCKPARENT | WANTPARENT);
- DPRINTF("lookup path %s\n", cnp->cn_pnbuf);
- DPRINTF("lookup file %s\n", cnp->cn_nameptr);
-
if ((error = VOP_ACCESS(vdp, VEXEC, cred, cnp->cn_proc)) != 0)
return (error);