commit-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[hurd] 28/53: trans/mtab: do not map unknown source strings to "none"


From: Samuel Thibault
Subject: [hurd] 28/53: trans/mtab: do not map unknown source strings to "none"
Date: Thu, 20 Mar 2014 02:23:51 +0000

This is an automated email from the git hooks/post-receive script.

sthibault pushed a commit to branch upstream
in repository hurd.

commit f2fd58347765c32fddd45b9dbd87097ad73b2001
Author: Justus Winter <address@hidden>
Date:   Tue Feb 11 13:30:07 2014 +0100

    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(-)

diff --git a/trans/mtab.c b/trans/mtab.c
index 744c435..da83e6f 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;

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-hurd/hurd.git



reply via email to

[Prev in Thread] Current Thread [Next in Thread]