Changeset 268
- Timestamp:
- Dec 22, 2009, 12:28:00 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r267 r268 12 12 dnl start 13 13 dnl 14 AM_INIT_AUTOMAKE(samhain, 2.6.1 )14 AM_INIT_AUTOMAKE(samhain, 2.6.1a) 15 15 AC_DEFINE([SAMHAIN], 1, [Application is samhain]) 16 16 AC_CANONICAL_HOST -
trunk/docs/Changelog
r265 r268 1 2.6.1a (22-12-2009): 2 * fix typo in code for older inotify versions without 3 inotify_init1(), reported by Forll 4 1 5 2.6.1 (21-12-2009): 2 6 * add a routine to log monitoring module to guess the proper year -
trunk/src/sh_inotify.c
r265 r268 147 147 long sflags; 148 148 149 sflags = retry_fcntl(FIL__, __LINE__, fd, F_GETFD, 0);150 retry_fcntl(FIL__, __LINE__, fd, F_SETFD, sflags|FD_CLOEXEC);149 sflags = retry_fcntl(FIL__, __LINE__, ifd, F_GETFD, 0); 150 retry_fcntl(FIL__, __LINE__, ifd, F_SETFD, sflags|FD_CLOEXEC); 151 151 } 152 152 #endif
Note:
See TracChangeset
for help on using the changeset viewer.