- Timestamp:
- Nov 1, 2006, 10:46:20 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r71 r75 13 13 dnl start 14 14 dnl 15 AM_INIT_AUTOMAKE(samhain, 2.3.0 )15 AM_INIT_AUTOMAKE(samhain, 2.3.0a) 16 16 AC_CANONICAL_HOST 17 17 -
trunk/docs/Changelog
r73 r75 1 2.3.0: 1 2.3.0a: 2 * fix compile failure with portcheck + stealth (reported by lucas) 3 4 2.3.0 (01-11-2006): 2 5 * fix concurrency for inserts in oracle db 3 6 * add acl_(new|old) to database schema -
trunk/src/sh_portcheck.c
r73 r75 391 391 { 392 392 struct sh_portentry * portlist; 393 char iface_all[8] = _("0.0.0.0"); 393 char iface_all[8]; 394 395 sl_strlcpy (iface_all, _("0.0.0.0"), sizeof(iface_all)); 394 396 395 397 if (0 == strcmp(proto, "tcp")) -
trunk/test/testcompile.sh
r68 r75 20 20 # 21 21 22 MAXTEST=6 3; export MAXTEST22 MAXTEST=65; export MAXTEST 23 23 24 24 run_flawfinder () … … 164 164 # test standalone compilation 165 165 # 166 TEST="${S}standalone w/suidcheck w/proc esscheck${E}"166 TEST="${S}standalone w/suidcheck w/procchk${E}" 167 167 # 168 168 if test -r "Makefile"; then … … 180 180 # test standalone compilation 181 181 # 182 TEST="${S}standalone w/proc esscheck w/portcheck${E}"182 TEST="${S}standalone w/procchk w/portchk${E}" 183 183 # 184 184 if test -r "Makefile"; then … … 187 187 # 188 188 ${TOP_SRCDIR}/configure --quiet --prefix=$PW_DIR --localstatedir=$PW_DIR --with-config-file=$PW_DIR/samhainrc.test --enable-process-check --enable-port-check > /dev/null 2>> test_log 189 # 190 let "num = num + 1" >/dev/null 191 testmake $? $num || let "numfail = numfail + 1" >/dev/null 192 let "num = num + 1" >/dev/null 193 run_smatch $? $num || let "numfail = numfail + 1" >/dev/null 194 195 # 196 # test standalone compilation 197 # 198 TEST="${S}standalone w/procchk w/portchk w/stealth${E}" 199 # 200 if test -r "Makefile"; then 201 $MAKE distclean 202 fi 203 # 204 ${TOP_SRCDIR}/configure --quiet --prefix=$PW_DIR --localstatedir=$PW_DIR --with-config-file=$PW_DIR/samhainrc.test --enable-stealth=164 --enable-process-check --enable-port-check > /dev/null 2>> test_log 189 205 # 190 206 let "num = num + 1" >/dev/null
Note:
See TracChangeset
for help on using the changeset viewer.