aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@suse.de>2006-03-17 01:56:02 +0100
committerKay Sievers <kay.sievers@suse.de>2006-03-17 01:56:02 +0100
commit8a37a3915f3431eb1613026a3ed72012d4f3b05d (patch)
tree276578955c117a4e81308e5668d8d25dd384c2fe
parent0d5be398ffd2f47e0b97f33ca2fd96319ee16c9d (diff)
downloadudev-8a37a3915f3431eb1613026a3ed72012d4f3b05d.tar.gz
add ',' to trusted chars
SGI needs it for some compatibility device names from irix, xvm volumes use "volname,subvolname" as the default device node.
-rw-r--r--udev_utils_string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/udev_utils_string.c b/udev_utils_string.c
index 36ef8bef..5aebfed5 100644
--- a/udev_utils_string.c
+++ b/udev_utils_string.c
@@ -241,7 +241,7 @@ int replace_untrusted_chars(char *str)
if ((str[i] >= '0' && str[i] <= '9') ||
(str[i] >= 'A' && str[i] <= 'Z') ||
(str[i] >= 'a' && str[i] <= 'z') ||
- strchr(" #$%+-./:=?@_", str[i])) {
+ strchr(" #$%+-./:=?@_,", str[i])) {
i++;
continue;
}