X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;ds=sidebyside;f=daemon%2Ffallocate.c;fp=daemon%2Ffallocate.c;h=7f17f8b85d6824dba4e9604468a682bec93ad2bc;hb=e9c37113104c1cfb234535adc9b52ad3880a41ce;hp=1800292d0ba61290e2f70c51227ba1ab75d8d5eb;hpb=9b3ef85a3d1b43faa98bb5dc922f8a273a5e1dde;p=libguestfs.git diff --git a/daemon/fallocate.c b/daemon/fallocate.c index 1800292..7f17f8b 100644 --- a/daemon/fallocate.c +++ b/daemon/fallocate.c @@ -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 ("failed to open %s", path); + reply_with_perror ("open: %s", path); return -1; } @@ -45,7 +45,7 @@ do_fallocate (const char *path, int len) r = posix_fallocate (fd, 0, len); if (r == -1) { - reply_with_perror ("posix_fallocate: %s", path); + reply_with_perror ("%s", path); close (fd); return -1; }