diff options
author | Sven Willner <sven.willner@gmail.com> | 2017-09-01 18:16:45 +0200 |
---|---|---|
committer | Sven Willner <sven.willner@gmail.com> | 2017-09-01 18:16:45 +0200 |
commit | f5ce98d3f379a810103e37fa36baf241668387f1 (patch) | |
tree | 765a537f16b0cfd7b91bc54aaa14840a8949d9f3 /src/options.c | |
parent | 177cbff6af7b9845d592fb0497464d70ee423418 (diff) |
changed option from inotify to auto-reload
Diffstat (limited to 'src/options.c')
-rw-r--r-- | src/options.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/options.c b/src/options.c index d06a4e7..20e6272 100644 --- a/src/options.c +++ b/src/options.c @@ -410,7 +410,7 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun) {"insecure" , 0, 0, 240}, {"no-recursive" , 0, 0, 241}, #ifdef HAVE_INOTIFY - {"inotify" , 0, 0, 243}, + {"auto-reload" , 0, 0, 243}, #endif {0, 0, 0, 0} }; @@ -740,7 +740,7 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun) #endif #ifdef HAVE_INOTIFY case 243: - opt.inotify = 1; + opt.auto_reload = 1; break; #endif case 224: |