Index: /trunk/docs/Changelog
===================================================================
--- /trunk/docs/Changelog	(revision 299)
+++ /trunk/docs/Changelog	(revision 300)
@@ -1,3 +1,5 @@
 2.8.1:
+	* fix minor issues noticed by T. Luettgert (test code assumes port 
+	  0/tcp is unused, wrong ifdef order (without impact on compilation))
 	* fix compile error on AIX 5.3 with --enable-login-watch,
 	  reported by M. El Nahass (time.h missing in src/sh_login_track.c)
Index: /trunk/src/sh_portcheck.c
===================================================================
--- /trunk/src/sh_portcheck.c	(revision 299)
+++ /trunk/src/sh_portcheck.c	(revision 300)
@@ -1790,5 +1790,5 @@
 #endif
 
-  p = sh_getservbyport(0, SH_PROTO_STR(IPPROTO_TCP), buf, sizeof(buf));
+  p = sh_getservbyport(0, SH_PROTO_STR(IPPROTO_UDP), buf, sizeof(buf));
   CuAssertTrue(tc, p == NULL);
 
Index: /trunk/src/sh_tiger0.c
===================================================================
--- /trunk/src/sh_tiger0.c	(revision 299)
+++ /trunk/src/sh_tiger0.c	(revision 300)
@@ -1581,9 +1581,9 @@
   if (0 == strcmp(c, _("TIGER192")))
     hash_type = 0;
-#ifdef USE_MD5
+#ifdef USE_SHA1
   else if (0 == strcmp(c, _("SHA1")))    
     hash_type = 1;
 #endif
-#ifdef USE_SHA1
+#ifdef USE_MD5
   else if (0 == strcmp(c, _("MD5")))    
     hash_type = 2;
