summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/vscanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/stdio/vscanf.c')
-rw-r--r--lib/libc/stdio/vscanf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/vscanf.c b/lib/libc/stdio/vscanf.c
index 5c8b5379cbe..898acc339d0 100644
--- a/lib/libc/stdio/vscanf.c
+++ b/lib/libc/stdio/vscanf.c
@@ -31,7 +31,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: vscanf.c,v 1.5 2004/09/28 18:12:44 otto Exp $";
+static char rcsid[] = "$OpenBSD: vscanf.c,v 1.6 2005/05/11 18:39:19 espie Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdio.h>
@@ -40,5 +40,5 @@ int
vscanf(const char *fmt, _BSD_VA_LIST_ ap)
{
- return (__svfscanf(stdin, fmt, ap));
+ return (vfscanf(stdin, fmt, ap));
}