mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
10 lines
321 B
C
10 lines
321 B
C
--- streamstat.c.orig 2016-01-15 08:36:19 UTC
|
|
+++ streamstat.c
|
|
@@ -282,6 +282,7 @@ char * customize_format(int cols, int ou
|
|
{
|
|
static char fmtstring[256];
|
|
int n = (cols - outlen - 1) / 2;
|
|
+ if (n < 15) n = 15; /* minimum required chars for IPv4 */
|
|
snprintf(fmtstring, 256, fmt, n, n, n, n);
|
|
return(fmtstring);
|
|
}
|