X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Fgrub.c;h=f394eefe7483301a704e932fd859637adec32522;hp=0a49c45dac1dedc8c056809fcff468e1401d1c9f;hb=4d900cdac8258daa2e99c6ceb2a4985154e94150;hpb=0c07f0d23698798475e0d09491812aca52440328 diff --git a/daemon/grub.c b/daemon/grub.c index 0a49c45..f394eef 100644 --- a/daemon/grub.c +++ b/daemon/grub.c @@ -26,25 +26,22 @@ #include "actions.h" int -do_grub_install (char *root, char *device) +do_grub_install (const char *root, const char *device) { int r; char *err; char *buf; - NEED_ROOT (-1); - ABS_PATH (root, return -1); - if (asprintf_nowarn (&buf, "--root-directory=%R", root) == -1) { reply_with_perror ("asprintf"); return -1; } - 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; }