2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 14:25:15 +00:00

kill bogus reference to vfprintf

This commit is contained in:
Todd C. Miller
1999-08-22 11:36:44 +00:00
parent c58303644f
commit 9d5008bf3c

View File

@@ -739,7 +739,7 @@ vasprintf(str, fmt, ap)
va_list ap;
{
return (vfprintf(str, 0, 1, fmt, ap));
return (xxxprintf(str, 0, 1, fmt, ap));
}
#endif /* HAVE_VASPRINTF */