From 28238a8abe41348c61991a6c1e16175373393162 Mon Sep 17 00:00:00 2001 From: skeezix Date: Mon, 15 Feb 2010 23:43:18 -0500 Subject: [PATCH] Another minor, useless change. --- lib/pnd_notify.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/pnd_notify.c b/lib/pnd_notify.c index 03b8295..9c377c7 100644 --- a/lib/pnd_notify.c +++ b/lib/pnd_notify.c @@ -21,9 +21,13 @@ static int notify_handle; //static void pnd_notify_hookup ( int fd ); +#if 1 #define PND_INOTIFY_MASK IN_CREATE | IN_DELETE | IN_UNMOUNT \ | IN_DELETE_SELF | IN_MOVE_SELF \ | IN_MOVED_FROM | IN_MOVED_TO | IN_MODIFY +#else +#define PND_INOTIFY_MASK IN_ALL_EVENTS +#endif pnd_notify_handle pnd_notify_init ( void ) { int fd; @@ -83,11 +87,7 @@ static int pnd_notify_callback ( const char *fpath, const struct stat *sb, void pnd_notify_watch_path ( pnd_notify_handle h, char *fullpath, unsigned int flags ) { pnd_notify_t *p = (pnd_notify_t*) h; -#if 1 inotify_add_watch ( p -> fd, fullpath, PND_INOTIFY_MASK ); -#else - inotify_add_watch ( p -> fd, fullpath, IN_ALL_EVENTS ); -#endif if ( flags & PND_NOTIFY_RECURSE ) { -- 2.39.5