summaryrefslogtreecommitdiff
path: root/udevd.c
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2006-12-08 09:48:53 +0100
committerKay Sievers <kay.sievers@vrfy.org>2006-12-08 09:48:53 +0100
commit9dd0c2573b1e3a6f18356e4db6cee5e5329ecb67 (patch)
tree70dcbc629bdc600aa48e8dab838d2a9f29cd697c /udevd.c
parent768cd81b7db0737240c759f59edd6d3399e1707a (diff)
rename config "filename" to "dir"
Diffstat (limited to 'udevd.c')
-rw-r--r--udevd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/udevd.c b/udevd.c
index 3adedac080..79465a1da0 100644
--- a/udevd.c
+++ b/udevd.c
@@ -1104,7 +1104,7 @@ int main(int argc, char *argv[], char *envp[])
/* watch rules directory */
inotify_fd = inotify_init();
if (inotify_fd >= 0)
- inotify_add_watch(inotify_fd, udev_rules_filename, IN_CREATE | IN_DELETE | IN_MOVE | IN_CLOSE_WRITE);
+ inotify_add_watch(inotify_fd, udev_rules_dir, IN_CREATE | IN_DELETE | IN_MOVE | IN_CLOSE_WRITE);
else if (errno == ENOSYS)
err("the kernel does not support inotify, udevd can't monitor configuration file changes");
else