do_umount: don't use RESOLVE_DEVICE anymore
authorJim Meyering <meyering@redhat.com>
Wed, 12 Aug 2009 07:49:24 +0000 (09:49 +0200)
committerJim Meyering <meyering@redhat.com>
Thu, 13 Aug 2009 12:45:34 +0000 (14:45 +0200)
* daemon/mount.c (do_umount): Don't use RESOLVE_DEVICE here,
now that the caller always invokes REQUIRE_ROOT_OR_RESOLVE_DEVICE.

daemon/mount.c

index 89bef34..4f74c02 100644 (file)
@@ -105,24 +105,20 @@ do_mount_options (const char *options, const char *device,
 int
 do_umount (const char *pathordevice)
 {
-  int freeit = 0, r;
-  char *buf;
+  int r;
   char *err;
 
-  if (strncmp (pathordevice, "/dev/", 5) == 0) {
-    buf = pathordevice;
-    RESOLVE_DEVICE (buf, return -1);
-  } else {
-    buf = sysroot_path (pathordevice);
-    if (buf == NULL) {
-      reply_with_perror ("malloc");
-      return -1;
-    }
-    freeit = 1;
+  char *buf = (strncmp (pathordevice, "/dev/", 5) == 0
+               ? strdup (pathordevice)
+               : sysroot_path (pathordevice));
+  if (buf == NULL) {
+    reply_with_perror ("malloc");
+    return -1;
   }
 
   r = command (NULL, &err, "umount", buf, NULL);
-  if (freeit) free (buf);
+  free (buf);
+
   if (r == -1) {
     reply_with_error ("umount: %s: %s", pathordevice, err);
     free (err);