summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/vsnprintf.c
diff options
context:
space:
mode:
authorespie <espie@openbsd.org>2005-04-30 09:25:17 +0000
committerespie <espie@openbsd.org>2005-04-30 09:25:17 +0000
commit685aea3ce6ed0cd7feff41ab14280ea9d93c3718 (patch)
tree04651561fbab26ee3dc6f113131ba97c7e5bb1dc /lib/libc/stdio/vsnprintf.c
parentisw* classification functions from citrus, with a `stub' implementation (diff)
downloadwireguard-openbsd-685aea3ce6ed0cd7feff41ab14280ea9d93c3718.tar.xz
wireguard-openbsd-685aea3ce6ed0cd7feff41ab14280ea9d93c3718.zip
Change internals of FILE: reuse the unget buffer field to access an
extended attribute data structure (pimpl idiom). Idea taken from citrus. Much discussion with deraadt@, otto@, millert@... This is the least disruptive way to extend FILE, since its size can't really change without this being a flag day. So the size doesn't change. Actual additions to the structure will come in separate steps, since this change is nasty enough on its own. Tests by otto@ and others, careful reading of code by otto@ and millert@. This is definitely a major bump, and has been checked to not impact a full ports build.
Diffstat (limited to 'lib/libc/stdio/vsnprintf.c')
-rw-r--r--lib/libc/stdio/vsnprintf.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libc/stdio/vsnprintf.c b/lib/libc/stdio/vsnprintf.c
index 9454f7621fa..11d17f6a430 100644
--- a/lib/libc/stdio/vsnprintf.c
+++ b/lib/libc/stdio/vsnprintf.c
@@ -31,11 +31,12 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: vsnprintf.c,v 1.7 2004/09/28 18:12:44 otto Exp $";
+static char rcsid[] = "$OpenBSD: vsnprintf.c,v 1.8 2005/04/30 09:25:17 espie Exp $";
#endif /* LIBC_SCCS and not lint */
#include <limits.h>
#include <stdio.h>
+#include "local.h"
int
vsnprintf(char *str, size_t n, const char *fmt, _BSD_VA_LIST_ ap)
@@ -43,6 +44,9 @@ vsnprintf(char *str, size_t n, const char *fmt, _BSD_VA_LIST_ ap)
int ret;
char dummy;
FILE f;
+ struct __sfileext fext;
+
+ _FILEEXT_SETUP(&f, &fext);
/* While snprintf(3) specifies size_t stdio uses an int internally */
if (n > INT_MAX)