X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Fheadtail.c;h=af2648cc7940f8bc4b47fac388faeeffc9736036;hp=6d248513ab9f0538a4e7c6fda96429c496acdc7f;hb=0f2e9c84e9ff1071260770930068642ecc8ac0d9;hpb=a7b73d4a1e09f12b2002083618056f0c823c1dcf diff --git a/daemon/headtail.c b/daemon/headtail.c index 6d24851..af2648c 100644 --- a/daemon/headtail.c +++ b/daemon/headtail.c @@ -32,20 +32,18 @@ headtail (const char *prog, const char *flag, const char *n, char *path) { char *buf; char *out, *err; - int r, len; + int r; char **lines; NEED_ROOT (NULL); ABS_PATH (path, NULL); /* Make the path relative to /sysroot. */ - len = strlen (path) + 9; - buf = malloc (len); + buf = sysroot_path (path); if (!buf) { reply_with_perror ("malloc"); return NULL; } - snprintf (buf, len, "/sysroot%s", path); r = command (&out, &err, prog, flag, n, buf, NULL); free (buf);