Changeset 493
- Timestamp:
- Nov 1, 2015, 4:18:59 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/Changelog
r492 r493 1 1 4.1.1: 2 * fix problem with timezone calculation on month rollover for 3 negative timezones (west of GMT; reported by Bond) 2 4 * fix problem with rotated logfiles when content is always constant, 3 5 i.e. checksum does not change (reported by Bond). -
trunk/src/sh_unix.c
r488 r493 2316 2316 /* Check for datum wrap-around. 2317 2317 */ 2318 if (aa.tm_year < bb.tm_year) 2318 if ((aa.tm_mday == 1) && (aa.tm_mday < bb.tm_mday)) 2319 sign = ( 1); 2320 else if (aa.tm_year < bb.tm_year) 2319 2321 sign = (-1); 2320 2322 else if (aa.tm_mon < bb.tm_mon) -
trunk/test/testhash.sh
r491 r493 63 63 fi 64 64 # 65 ${TOP_SRCDIR}/configure --enable-debug=gdb --quiet $TRUST --prefix=$PW_DIR --localstatedir=$PW_DIR --with-config-file=$RCFILE --with-log-file=$LOGFILE --with-pid-file=$PW_DIR/.samhain_lock --with-data-file=$PW_DIR/.samhain_file --enable-db-reload '--enable-login-watch' '--enable-mounts-check' ${C_LOGFILE} '--enable-port-check' '--enable- message-queue' '--enable-suidcheck' '--disable-dnmalloc'65 ${TOP_SRCDIR}/configure --enable-debug=gdb --quiet $TRUST --prefix=$PW_DIR --localstatedir=$PW_DIR --with-config-file=$RCFILE --with-log-file=$LOGFILE --with-pid-file=$PW_DIR/.samhain_lock --with-data-file=$PW_DIR/.samhain_file --enable-db-reload '--enable-login-watch' '--enable-mounts-check' ${C_LOGFILE} '--enable-port-check' '--enable-process-check' '--enable-message-queue' '--enable-suidcheck' '--disable-dnmalloc' 66 66 # 67 67 fail=0
Note:
See TracChangeset
for help on using the changeset viewer.