diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-09-16 00:36:41 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-09-16 00:36:41 +0200 |
commit | 97c4a07df982ee967705022feaba9be33947abf0 (patch) | |
tree | e4f47e0b68cc04695473b9b8aa0b17bb7f1511df /src/mount.c | |
parent | 8e12a6aed3d99ac8c140cd56b560f5efeb1c4e1a (diff) |
vconsole: add new utility to initialize the virtual console
Diffstat (limited to 'src/mount.c')
-rw-r--r-- | src/mount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mount.c b/src/mount.c index d651e8714b..5a05e2c189 100644 --- a/src/mount.c +++ b/src/mount.c @@ -1228,7 +1228,7 @@ static char *fstab_node_to_udev_node(char *p) { if (startswith(p, "LABEL=")) { - if (!(u = unquote(p+6, '"'))) + if (!(u = unquote(p+6, "\"\'"))) return NULL; t = xescape(u, "/ "); @@ -1248,7 +1248,7 @@ static char *fstab_node_to_udev_node(char *p) { if (startswith(p, "UUID=")) { - if (!(u = unquote(p+5, '"'))) + if (!(u = unquote(p+5, "\"\'"))) return NULL; t = xescape(u, "/ "); |