sfdisk.c, fallocate.c: use a string literal as format
authorJim Meyering <meyering@redhat.com>
Mon, 17 Aug 2009 07:43:18 +0000 (09:43 +0200)
committerJim Meyering <meyering@redhat.com>
Mon, 17 Aug 2009 09:40:24 +0000 (11:40 +0200)
* daemon/fallocate.c (do_fallocate): Format was not a string literal.
* daemon/sfdisk.c (sfdisk): Likewise.

daemon/fallocate.c
daemon/sfdisk.c

index eb84145..20a75e6 100644 (file)
@@ -36,7 +36,7 @@ do_fallocate (const char *path, int len)
   fd = open (path, O_WRONLY | O_CREAT | O_TRUNC | O_NOCTTY, 0666);
   CHROOT_OUT;
   if (fd == -1) {
-    reply_with_perror (path);
+    reply_with_perror ("failed to open %s", path);
     return -1;
   }
 
index 6d49387..b68b9f6 100644 (file)
@@ -72,13 +72,13 @@ sfdisk (const char *device, int n, int cyls, int heads, int sectors,
 
   fp = popen (buf, "w");
   if (fp == NULL) {
-    reply_with_perror (buf);
+    reply_with_perror ("failed to open pipe: %s", buf);
     return -1;
   }
 
   for (i = 0; lines[i] != NULL; ++i) {
     if (fprintf (fp, "%s\n", lines[i]) < 0) {
-      reply_with_perror (buf);
+      reply_with_perror ("failed to write to pipe: %s", buf);
       pclose (fp);
       return -1;
     }