command.c: avoid shadowing a global function
[libguestfs.git] / daemon / grub.c
index 8476619..657abbb 100644 (file)
 #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 (return -1);
-  ABS_PATH (root, return -1);
-
   if (asprintf_nowarn (&buf, "--root-directory=%R", root) == -1) {
     reply_with_perror ("asprintf");
     return -1;