cuse: fix minor typos in error messages
authorMiklos Szeredi <mszeredi@suse.cz>
Fri, 27 Aug 2010 11:29:54 +0000 (13:29 +0200)
committerMiklos Szeredi <mszeredi@suse.cz>
Fri, 27 Aug 2010 11:29:54 +0000 (13:29 +0200)
This basically was a
    %s/fuse:/cuse:/
to remove some apparent copy/paste errors.

Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
lib/cuse_lowlevel.c

index d507933568a447d4a097d7c920fa7b7bc84440fe..402cf4bd1f5262fff609fe65c693abf1df3a5e72 100644 (file)
@@ -214,14 +214,14 @@ void cuse_lowlevel_init(fuse_req_t req, fuse_ino_t nodeid, const void *inarg)
        f->conn.want = 0;
 
        if (arg->major < 7) {
-               fprintf(stderr, "fuse: unsupported protocol version: %u.%u\n",
+               fprintf(stderr, "cuse: unsupported protocol version: %u.%u\n",
                        arg->major, arg->minor);
                fuse_reply_err(req, EPROTO);
                return;
        }
 
        if (bufsize < FUSE_MIN_READ_BUFFER) {
-               fprintf(stderr, "fuse: warning: buffer size too small: %zu\n",
+               fprintf(stderr, "cuse: warning: buffer size too small: %zu\n",
                        bufsize);
                bufsize = FUSE_MIN_READ_BUFFER;
        }
@@ -306,9 +306,9 @@ struct fuse_session *cuse_lowlevel_setup(int argc, char *argv[],
        fd = open(devname, O_RDWR);
        if (fd == -1) {
                if (errno == ENODEV || errno == ENOENT)
-                       fprintf(stderr, "fuse: device not found, try 'modprobe cuse' first\n");
+                       fprintf(stderr, "cuse: device not found, try 'modprobe cuse' first\n");
                else
-                       fprintf(stderr, "fuse: failed to open %s: %s\n",
+                       fprintf(stderr, "cuse: failed to open %s: %s\n",
                                devname, strerror(errno));
                goto err_se;
        }