Code

src/utils_mount.c: Correct syntax errors in error-strings.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Mon, 23 Oct 2006 21:35:43 +0000 (23:35 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Mon, 23 Oct 2006 21:35:43 +0000 (23:35 +0200)
src/utils_mount.c

index 16156203c9b88f0e96213f3387b18240caf7f7f0..38ec24f09daed58cfbd0de7069dd18855f20d93b 100644 (file)
@@ -450,7 +450,7 @@ static cu_mount_t *cu_mount_getfsstat (void)
        /* Get the number of mounted file systems */
        if ((bufsize = CMD_STATFS (NULL, 0, FLAGS_STATFS)) < 1)
        {
-               DBG (CMD_STATFS" failed: %s", strerror (errno));
+               DBG ("getv?fsstat failed: %s", strerror (errno));
                return (NULL);
        }
 
@@ -463,7 +463,7 @@ static cu_mount_t *cu_mount_getfsstat (void)
         * manpage.. -octo */
        if ((num = CMD_STATFS (buf, bufsize * sizeof (STRUCT_STATFS), FLAGS_STATFS)) < 1)
        {
-               DBG (CMD_STATFS" failed: %s", strerror (errno));
+               DBG ("getv?fsstat failed: %s", strerror (errno));
                free (buf);
                return (NULL);
        }