mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Back out snprintf -> sprintf change until I have time to look at it.
This commit is contained in:
parent
b64f39b655
commit
d7422f2f19
1 changed files with 1 additions and 1 deletions
|
|
@ -446,7 +446,7 @@ _conv(n, format, pt, ptlim)
|
|||
{
|
||||
char buf[INT_STRLEN_MAXIMUM(int) + 1];
|
||||
|
||||
(void) snprintf(buf, sizeof(buf), format, n);
|
||||
(void) sprintf(buf, format, n);
|
||||
return _add(buf, pt, ptlim);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue