From f2fd58347765c32fddd45b9dbd87097ad73b2001 Mon Sep 17 00:00:00 2001 From: Justus Winter <4winter@informatik.uni-hamburg.de> Date: Tue, 11 Feb 2014 13:30:07 +0100 Subject: trans/mtab: do not map unknown source strings to "none" Previously, map_device_to_path mapped unknown device strings to "none". Return a copy of the original source string instead so that e.g. nfs mount point points are properly handled. * trans/mtab.c (map_device_to_path): Do not map unknown source strings to "none". --- trans/mtab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'trans') diff --git a/trans/mtab.c b/trans/mtab.c index 744c435e..da83e6fc 100644 --- a/trans/mtab.c +++ b/trans/mtab.c @@ -564,7 +564,7 @@ map_device_to_path (const char *device, char **path) else if (looks_like_block_device (device)) asprintf (path, "/dev/%s", device); else - *path = strdup ("none"); + *path = strdup (device); if (! *path) return ENOMEM; -- cgit v1.2.3