X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Fdu.c;h=942a699a5c1fc5a0fc5d7185357bb9aa692eb757;hp=f5f083d251856968feb9539c53a15d99793ad9da;hb=83f381f5ccfb7e86bfaaeeade9d06c9e54ddb0cf;hpb=6bda071b5cd8393b37653687027c4ae6c6cf3804 diff --git a/daemon/du.c b/daemon/du.c index f5f083d..942a699 100644 --- a/daemon/du.c +++ b/daemon/du.c @@ -29,16 +29,13 @@ #include "actions.h" int64_t -do_du (char *path) +do_du (const char *path) { int r; int64_t rv; char *out, *err; char *buf; - NEED_ROOT (return -1); - ABS_PATH (path, return -1); - /* Make the path relative to /sysroot. */ buf = sysroot_path (path); if (!buf) { @@ -49,7 +46,7 @@ do_du (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; @@ -58,7 +55,7 @@ do_du (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; }