summaryrefslogtreecommitdiff
path: root/lib/libfuse
diff options
context:
space:
mode:
authorhelg <helg@cvs.openbsd.org>2018-07-03 23:23:27 +0000
committerhelg <helg@cvs.openbsd.org>2018-07-03 23:23:27 +0000
commit8103d29239dd46c9e1622285261540464f34f98a (patch)
treede380f57afddba0f24d769e27b82ae9700197e48 /lib/libfuse
parentf4926f8c6a3d5eab2b2fe4eef72fba3f26a650d0 (diff)
Remove residual debug statements.
Diffstat (limited to 'lib/libfuse')
-rw-r--r--lib/libfuse/fuse.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libfuse/fuse.c b/lib/libfuse/fuse.c
index db0fdfa94f0..cc5f8c50c8c 100644
--- a/lib/libfuse/fuse.c
+++ b/lib/libfuse/fuse.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fuse.c,v 1.47 2018/06/19 13:01:34 helg Exp $ */
+/* $OpenBSD: fuse.c,v 1.48 2018/07/03 23:23:26 helg Exp $ */
/*
* Copyright (c) 2013 Sylvestre Gallon <ccna.syl@gmail.com>
*
@@ -253,7 +253,6 @@ fuse_loop(struct fuse *fuse)
ioexch.fbxch_data = fbuf.fb_dat;
if (ioctl(fuse->fc->fd, FIOCSETFBDAT, &ioexch)) {
-printf("libfuse: FIOCSETFBDAT error\n");
free(fbuf.fb_dat);
return (-1);
}
@@ -262,7 +261,6 @@ printf("libfuse: FIOCSETFBDAT error\n");
ictx = NULL;
if (n != FUSEBUFSIZE) {
-printf("libfuse: write error: %s\n", strerror(errno));
errno = EINVAL;
return (-1);
}