X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Fmount.c;h=548511686390592e1907d91cf9d52db24b78b476;hp=8927c6c207462bad2ac57c5270281cefc2514436;hb=dc706a639eec16084c0618baf7bfde00c6565f63;hpb=5922d7084d6b43f0a1a15b664c7082dfeaf584d0;ds=sidebyside diff --git a/daemon/mount.c b/daemon/mount.c index 8927c6c..5485116 100644 --- a/daemon/mount.c +++ b/daemon/mount.c @@ -48,7 +48,7 @@ do_mount_vfs (const char *options, const char *vfstype, char *mp; char *error; - ABS_PATH (mountpoint, , return -1); + ABS_PATH (mountpoint, 0, return -1); is_root = STREQ (mountpoint, "/"); @@ -121,7 +121,7 @@ do_umount (const char *pathordevice) } if (is_dev) - RESOLVE_DEVICE (buf, , { free (buf); return -1; }); + RESOLVE_DEVICE (buf, 0, { free (buf); return -1; }); r = command (NULL, &err, "umount", buf, NULL); free (buf); @@ -356,7 +356,7 @@ do_mkmountpoint (const char *path) int r; /* NEED_ROOT (return -1); - we don't want this test for this call. */ - ABS_PATH (path, , return -1); + ABS_PATH (path, 0, return -1); CHROOT_IN; r = mkdir (path, 0777); @@ -381,7 +381,7 @@ do_rmmountpoint (const char *path) int r; /* NEED_ROOT (return -1); - we don't want this test for this call. */ - ABS_PATH (path, , return -1); + ABS_PATH (path, 0, return -1); CHROOT_IN; r = rmdir (path);