Merged revisions 186297 via svnmerge from

https://origsvn.digium.com/svn/asterisk/trunk

........
  r186297 | tilghman | 2009-04-03 10:18:28 -0500 (Fri, 03 Apr 2009) | 4 lines
  
  Compatibility fix for glibc 2.4
  (Closes issue #14820)
  Reported by: phsultan
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@186302 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.2
Tilghman Lesher 18 years ago
parent e577b70d7a
commit 56b835f2ea

@ -310,7 +310,11 @@ static void add_notify(struct state *sp, const char *path)
sp->wd[1] = -1;
}
/* or if the symlink itself changes (or the real file is here, if path is not a symlink) */
sp->wd[0] = inotify_add_watch(inotify_fd, path, IN_ATTRIB | IN_DELETE_SELF | IN_MODIFY | IN_MOVE_SELF | IN_CLOSE_WRITE | IN_DONT_FOLLOW);
sp->wd[0] = inotify_add_watch(inotify_fd, path, IN_ATTRIB | IN_DELETE_SELF | IN_MODIFY | IN_MOVE_SELF | IN_CLOSE_WRITE
#ifdef IN_DONT_FOLLOW /* Only defined in glibc 2.5 and above */
| IN_DONT_FOLLOW
#endif
);
}
}
#else

Loading…
Cancel
Save