From: Guy Harris Date: Wed, 18 Nov 2015 20:46:25 +0000 (-0800) Subject: Remove debugging printouts. X-Git-Tag: tcpdump-4.8.0~73 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/938056a4b69c1bafaa663cd7336c28fbb66c6178 Remove debugging printouts. --- diff --git a/addrtostr.c b/addrtostr.c index 654f8922..e941d8e1 100644 --- a/addrtostr.c +++ b/addrtostr.c @@ -174,7 +174,6 @@ addrtostr6 (const void *src, char *dst, size_t size) if (!addrtostr(srcaddr+12, tp, sizeof(tmp) - (tp - tmp))) { errno = ENOSPC; -fprintf(stderr, "Bleah 1\n"); return (NULL); } tp += strlen(tp); @@ -194,7 +193,6 @@ fprintf(stderr, "Bleah 1\n"); if ((size_t)(tp - tmp) > size) { errno = ENOSPC; -fprintf(stderr, "Bleah 2\n"); return (NULL); } return strcpy (dst, tmp);