mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
12 lines
281 B
C
12 lines
281 B
C
--- utils.c.orig Fri Sep 12 18:01:20 2003
|
|
+++ utils.c Fri Sep 12 22:21:05 2003
|
|
@@ -82,7 +82,7 @@
|
|
static char result[LINELEN];
|
|
|
|
va_start (ap, fmt);
|
|
- (void) vsprintf (result, fmt, ap);
|
|
+ (void) vsnprintf (result, LINELEN, fmt, ap);
|
|
va_end (ap);
|
|
return (result);
|
|
}
|