X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Fdu.c;h=7cf2f4a682e3561c2a1f960f5c34e26cde823269;hp=e6df2452bdde7220f2835e93221d25d06e4c320e;hb=692f127447d399db21c2e93026d4d2b0ac1839d1;hpb=84fc760439e82e6b3616abd0d1f9bd7d7eb01ec0 diff --git a/daemon/du.c b/daemon/du.c index e6df245..7cf2f4a 100644 --- a/daemon/du.c +++ b/daemon/du.c @@ -24,7 +24,7 @@ #include #include -#include "../src/guestfs_protocol.h" +#include "guestfs_protocol.h" #include "daemon.h" #include "actions.h" @@ -46,7 +46,7 @@ do_du (const char *path) r = command (&out, &err, "du", "-s", buf, NULL); free (buf); if (r == -1) { - reply_with_error ("du: %s: %s", path, err); + reply_with_error ("%s: %s", path, err); free (out); free (err); return -1; @@ -55,7 +55,7 @@ do_du (const char *path) free (err); if (sscanf (out, "%"SCNi64, &rv) != 1) { - reply_with_error ("du: %s: could not read output: %s", path, out); + reply_with_error ("%s: could not read output: %s", path, out); free (out); return -1; }