ports/net/echoping/files/patch-smtp.c
Eugene Grosbein 16b5a48d6c net/echoping: fix build with -fno-common (clang 11 and gcc 10)
PORTREVISION not bumped as it fixes build for FreeBSD 13.

Reported by:	pkg-fallout
2020-08-20 09:06:14 +00:00

11 lines
214 B
C

--- smtp.c.orig 2019-12-29 10:14:41 UTC
+++ smtp.c
@@ -8,7 +8,7 @@
#ifdef SMTP
-char big_recvline[MAXTOREAD];
+static char big_recvline[MAXTOREAD];
int
smtp_read_response_from_server(FILE * fs)