command.c: avoid shadowing a global function
[libguestfs.git] / daemon / du.c
index 6f1adba..e6df245 100644 (file)
 #include "actions.h"
 
 int64_t
-do_du (char *path)
+do_du (const char *path)
 {
   int r;
   int64_t rv;
   char *out, *err;
   char *buf;
-  int len;
-
-  NEED_ROOT (-1);
-  ABS_PATH (path, -1);
 
   /* Make the path relative to /sysroot. */
-  len = strlen (path) + 9;
-  buf = malloc (len);
+  buf = sysroot_path (path);
   if (!buf) {
     reply_with_perror ("malloc");
     return -1;
   }
-  snprintf (buf, len, "/sysroot%s", path);
 
   r = command (&out, &err, "du", "-s", buf, NULL);
   free (buf);