diff options
author | 2008-08-26 17:56:30 +0000 | |
---|---|---|
committer | 2008-08-26 17:56:30 +0000 | |
commit | 288266f84ef243c2f1f17258eada9123a6098980 (patch) | |
tree | 25ce793b9e01d83f2767a212aa7c88ab78791092 /lib/libc/stdio/vfprintf.c | |
parent | Plug potential memory leak. (diff) | |
download | wireguard-openbsd-288266f84ef243c2f1f17258eada9123a6098980.tar.xz wireguard-openbsd-288266f84ef243c2f1f17258eada9123a6098980.zip |
don't zero-pad special values. ok millert@
Diffstat (limited to 'lib/libc/stdio/vfprintf.c')
-rw-r--r-- | lib/libc/stdio/vfprintf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index fd2b944e0af..84c0eeaa08f 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfprintf.c,v 1.48 2008/07/10 18:18:55 martynas Exp $ */ +/* $OpenBSD: vfprintf.c,v 1.49 2008/08/26 17:56:30 martynas Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -543,11 +543,13 @@ reswitch: switch (ch) { sign = '-'; cp = "Inf"; size = 3; + flags &= ~ZEROPAD; break; } if (isnan(_double)) { cp = "NaN"; size = 3; + flags &= ~ZEROPAD; break; } |