From: Joshua Drake Date: Mon, 30 Nov 2015 22:26:59 +0000 (-0800) Subject: Removed debugging stuff X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=9833e01b08c869f72de88afb783f8c9f5b7b89c1;p=p0f-client-exim.git Removed debugging stuff --- diff --git a/Makefile b/Makefile index b39c5d7..c153c05 100644 --- 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 + diff --git a/p0f-client-exim.c b/p0f-client-exim.c index 6e00ac3..9d2711c 100644 --- a/p0f-client-exim.c +++ b/p0f-client-exim.c @@ -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; }