Changeset 300
- Timestamp:
- Nov 6, 2010, 8:33:41 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/Changelog
r299 r300 1 1 2.8.1: 2 * fix minor issues noticed by T. Luettgert (test code assumes port 3 0/tcp is unused, wrong ifdef order (without impact on compilation)) 2 4 * fix compile error on AIX 5.3 with --enable-login-watch, 3 5 reported by M. El Nahass (time.h missing in src/sh_login_track.c) -
trunk/src/sh_portcheck.c
r295 r300 1790 1790 #endif 1791 1791 1792 p = sh_getservbyport(0, SH_PROTO_STR(IPPROTO_ TCP), buf, sizeof(buf));1792 p = sh_getservbyport(0, SH_PROTO_STR(IPPROTO_UDP), buf, sizeof(buf)); 1793 1793 CuAssertTrue(tc, p == NULL); 1794 1794 -
trunk/src/sh_tiger0.c
r248 r300 1581 1581 if (0 == strcmp(c, _("TIGER192"))) 1582 1582 hash_type = 0; 1583 #ifdef USE_ MD51583 #ifdef USE_SHA1 1584 1584 else if (0 == strcmp(c, _("SHA1"))) 1585 1585 hash_type = 1; 1586 1586 #endif 1587 #ifdef USE_ SHA11587 #ifdef USE_MD5 1588 1588 else if (0 == strcmp(c, _("MD5"))) 1589 1589 hash_type = 2;
Note:
See TracChangeset
for help on using the changeset viewer.