X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Fgrub.c;h=f394eefe7483301a704e932fd859637adec32522;hp=29fe294b98146a0936a7ba8f006c2af6fb15516c;hb=ba39ced8804765705f4c61a92db0fddb8d672c7d;hpb=a7b73d4a1e09f12b2002083618056f0c823c1dcf diff --git a/daemon/grub.c b/daemon/grub.c index 29fe294..f394eef 100644 --- a/daemon/grub.c +++ b/daemon/grub.c @@ -26,29 +26,22 @@ #include "actions.h" int -do_grub_install (char *root, char *device) +do_grub_install (const char *root, const char *device) { - int r, len; + int r; char *err; char *buf; - NEED_ROOT (-1); - ABS_PATH (root, -1); - IS_DEVICE (device, -1); - - len = strlen (root) + 64; - buf = malloc (len); - if (!buf) { - reply_with_perror ("malloc"); + if (asprintf_nowarn (&buf, "--root-directory=%R", root) == -1) { + reply_with_perror ("asprintf"); return -1; } - snprintf (buf, len, "--root-directory=/sysroot%s", root); - r = command (NULL, &err, "/sbin/grub-install", buf, device, NULL); + r = command (NULL, &err, "grub-install", buf, device, NULL); free (buf); if (r == -1) { - reply_with_error ("grub-install: %s", err); + reply_with_error ("%s", err); free (err); return -1; }