X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=daemon%2Fchecksum.c;h=24232650cea7b59591638e43a58991e2443fd880;hb=abac360f324d8c881878c5d9b7fb64be93981125;hp=bdbef13b89a9bf037cad96bc66e5906836a4dcdc;hpb=aef3d2013fee188c9607f35657c45df88503cd64;p=libguestfs.git diff --git a/daemon/checksum.c b/daemon/checksum.c index bdbef13..2423265 100644 --- a/daemon/checksum.c +++ b/daemon/checksum.c @@ -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 @@ -33,10 +33,8 @@ do_checksum (const char *csumtype, const char *path) const char *program; char *buf; char *out, *err; - int r, len; - - NEED_ROOT (NULL); - ABS_PATH (path, NULL); + int r; + int len; if (strcasecmp (csumtype, "crc") == 0) program = "cksum"; @@ -58,13 +56,11 @@ do_checksum (const char *csumtype, const char *path) } /* 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, program, buf, NULL); free (buf);