]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
exportfs: drop extra newline in xlog
authorMike Frysinger <vapier@gentoo.org>
Thu, 1 Sep 2011 15:33:06 +0000 (11:33 -0400)
committerSteve Dickson <steved@redhat.com>
Thu, 1 Sep 2011 15:33:06 +0000 (11:33 -0400)
Since xlog() itself appends a newline, we don't want to add our own
otherwise we get extra in the output.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Steve Dickson <steved@redhat.com>
utils/exportfs/exportfs.c

index 12e8bf112dd414259ffec3d749497125c5c469b2..986a272fd7e69924155086e83f5bf577706ca610 100644 (file)
@@ -401,7 +401,7 @@ validate_export(nfs_export *exp)
        int fs_has_fsid = 0;
 
        if (stat(path, &stb) < 0) {
        int fs_has_fsid = 0;
 
        if (stat(path, &stb) < 0) {
-               xlog(L_ERROR, "Failed to stat %s: %m \n", path);
+               xlog(L_ERROR, "Failed to stat %s: %m", path);
                return;
        }
        if (!S_ISDIR(stb.st_mode) && !S_ISREG(stb.st_mode)) {
                return;
        }
        if (!S_ISDIR(stb.st_mode) && !S_ISREG(stb.st_mode)) {
@@ -530,7 +530,7 @@ export_d_read(const char *dname)
 
        n = scandir(dname, &namelist, NULL, versionsort);
        if (n < 0)
 
        n = scandir(dname, &namelist, NULL, versionsort);
        if (n < 0)
-               xlog(L_NOTICE, "scandir %s: %s\n", dname, strerror(errno));
+               xlog(L_NOTICE, "scandir %s: %s", dname, strerror(errno));
        else if (n == 0)
                return;
 
        else if (n == 0)
                return;
 
@@ -558,7 +558,7 @@ export_d_read(const char *dname)
 
                fname_len = snprintf(fname, PATH_MAX +1, "%s/%s", dname, d->d_name);
                if (fname_len > PATH_MAX) {
 
                fname_len = snprintf(fname, PATH_MAX +1, "%s/%s", dname, d->d_name);
                if (fname_len > PATH_MAX) {
-                       xlog(L_WARNING, "Too long file name: %s in %s\n", d->d_name, dname);
+                       xlog(L_WARNING, "Too long file name: %s in %s", d->d_name, dname);
                        continue;
                }
 
                        continue;
                }
 
@@ -672,7 +672,7 @@ dump(int verbose)
 static void
 error(nfs_export *exp, int err)
 {
 static void
 error(nfs_export *exp, int err)
 {
-       xlog(L_ERROR, "%s:%s: %s\n", exp->m_client->m_hostname,
+       xlog(L_ERROR, "%s:%s: %s", exp->m_client->m_hostname,
                exp->m_export.e_path, strerror(err));
 }
 
                exp->m_export.e_path, strerror(err));
 }