From: Kay Sievers Date: Thu, 26 Jan 2006 02:59:13 +0000 (+0100) Subject: find programs in /lib/udev for IMPORT if {program} is not given X-Git-Tag: 174~2375 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=d2f605c8d61e4c5ef129f93510ab8b38e32cee97 find programs in /lib/udev for IMPORT if {program} is not given Signed-off-by: Kay Sievers --- diff --git a/udev_rules_parse.c b/udev_rules_parse.c index 4fcd6db08..376006c7c 100644 --- a/udev_rules_parse.c +++ b/udev_rules_parse.c @@ -366,6 +366,16 @@ static int add_to_rules(struct udev_rules *rules, char *line) pos = strchr(file, ' '); if (pos) pos[0] = '\0'; + + /* allow programs in /lib/udev called without the path */ + if (strchr(file, '/') == NULL) { + strlcpy(file, "/lib/udev/", sizeof(file)); + strlcat(file, value, sizeof(file)); + pos = strchr(file, ' '); + if (pos) + pos[0] = '\0'; + } + dbg("IMPORT auto mode for '%s'", file); if (!lstat(file, &stats) && (stats.st_mode & S_IXUSR)) { dbg("IMPORT is executable, will be executed (autotype)");