]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - stdio-common/isoc99_vfscanf.c
nss: Fix tst-nss-files-alias-truncated for default --as-needed linking
[thirdparty/glibc.git] / stdio-common / isoc99_vfscanf.c
index c96ca831ae383df09360ce21742c50975c20c8fa..d9734fed38d9266f24f9f0adaf39fb875b9dbd54 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2018 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2019 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
 #include <stdio.h>
 
 /* Read formatted input from STREAM according to the format string FORMAT.  */
-/* VARARGS2 */
 int
 __isoc99_vfscanf (FILE *stream, const char *format, va_list args)
 {
-  int done;
-
-  _IO_acquire_lock_clear_flags2 (stream);
-  stream->_flags2 |= _IO_FLAGS2_SCANF_STD;
-  done = __vfscanf_internal (stream, format, args, 0);
-  _IO_release_lock (stream);
-  return done;
+  return __vfscanf_internal (stream, format, args, SCANF_ISOC99_A);
 }
 libc_hidden_def (__isoc99_vfscanf)