From d2f605c8d61e4c5ef129f93510ab8b38e32cee97 Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Thu, 26 Jan 2006 03:59:13 +0100 Subject: [PATCH] find programs in /lib/udev for IMPORT if {program} is not given Signed-off-by: Kay Sievers --- udev_rules_parse.c | 10 ++++++++++ 1 file changed, 10 insertions(+) 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)"); -- 2.30.2