Removed debugging stuff
authorJoshua Drake <zamnedix@sleepermud.net>
Mon, 30 Nov 2015 22:26:59 +0000 (14:26 -0800)
committerJoshua Drake <zamnedix@sleepermud.net>
Mon, 30 Nov 2015 22:31:10 +0000 (14:31 -0800)
Makefile
p0f-client-exim.c

index b39c5d78e182bafe35f8f3c064de8a2ec2680b85..c153c058b7235b4cc6c54fe7f646b49fffe8ef9b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -8,5 +8,4 @@ all:
        ${CC} ${CFLAGS}     ${SRC} -o ${OUT}
 debug:
        ${CC} ${DBG_CFLAGS} ${SRC} -o ${OUT}
-test:
-       ./${OUT} ~/tmp/p0f.sock "2001:4830:134:3::11"; echo
+
index 6e00ac3e9081521aa93a95fcd9a9cd38618ec0ad..9d2711c48df3d1e8c3c75696c1dc25563d72b7a2 100644 (file)
@@ -69,14 +69,6 @@ static void parse_addr6(char* str, u8* ret) {
   }
   memcpy(ret, &ip, 16);
 
-#ifdef _DEBUG
-  u8 i;
-  for (i=0; i<8; i++) {
-    SAYF("%x ", ret[i]);
-  }
-  SAYF("\n");
-#endif
-  
   return;
 }