Make /sysroot path configurable.
[libguestfs.git] / daemon / wc.c
index 91e1942..4878b57 100644 (file)
@@ -1,5 +1,5 @@
 /* libguestfs - the guestfsd daemon
- * Copyright (C) 2009 Red Hat Inc. 
+ * Copyright (C) 2009 Red Hat Inc.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -32,19 +32,17 @@ wc (char *flag, char *path)
 {
   char *buf;
   char *out, *err;
-  int r, len;
+  int r;
 
   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, "wc", flag, buf, NULL);
   free (buf);