diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2006-12-08 09:48:53 +0100 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2006-12-08 09:48:53 +0100 |
commit | 9dd0c2573b1e3a6f18356e4db6cee5e5329ecb67 (patch) | |
tree | 70dcbc629bdc600aa48e8dab838d2a9f29cd697c /udevd.c | |
parent | 768cd81b7db0737240c759f59edd6d3399e1707a (diff) |
rename config "filename" to "dir"
Diffstat (limited to 'udevd.c')
-rw-r--r-- | udevd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |