diff options
author | Martin Pool <mbp@samba.org> | 2003-04-14 05:02:55 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2003-04-14 05:02:55 +0000 |
commit | af732811cc765b6a271a17af62364c199dc6752f (patch) | |
tree | 5619c97571cdd55f20bac1fe93c2fcd8755ab297 /source3/lib | |
parent | 63a1b7637f11688f36ca8302714e1591927c51e4 (diff) | |
download | samba-af732811cc765b6a271a17af62364c199dc6752f.tar.gz samba-af732811cc765b6a271a17af62364c199dc6752f.tar.bz2 samba-af732811cc765b6a271a17af62364c199dc6752f.zip |
Add selected parts of the changelog to this file, to make merging into
other projects easier.
(This used to be commit 0f3c2bfbd2de0e759e3083afabee0538528d7a65)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/snprintf.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/source3/lib/snprintf.c b/source3/lib/snprintf.c index 034e6466d6..8bdf014faa 100644 --- a/source3/lib/snprintf.c +++ b/source3/lib/snprintf.c @@ -57,6 +57,27 @@ * got rid of fcvt code (twas buggy and made testing harder) * added C99 semantics * + * date: 2002/12/19 19:56:31; author: herb; state: Exp; lines: +2 -0 + * actually print args for %g and %e + * + * date: 2002/06/03 13:37:52; author: jmcd; state: Exp; lines: +8 -0 + * Since includes.h isn't included here, VA_COPY has to be defined here. I don't + * see any include file that is guaranteed to be here, so I'm defining it + * locally. Fixes AIX and Solaris builds. + * + * date: 2002/06/03 03:07:24; author: tridge; state: Exp; lines: +5 -13 + * put the ifdef for HAVE_VA_COPY in one place rather than in lots of + * functions + * + * date: 2002/05/17 14:51:22; author: jmcd; state: Exp; lines: +21 -4 + * Fix usage of va_list passed as an arg. Use __va_copy before using it + * when it exists. + * + * date: 2002/04/16 22:38:04; author: idra; state: Exp; lines: +20 -14 + * Fix incorrect zpadlen handling in fmtfp. + * Thanks to Ollie Oldham <ollie.oldham@metro-optix.com> for spotting it. + * few mods to make it easier to compile the tests. + * addedd the "Ollie" test to the floating point ones. **************************************************************/ #ifndef NO_CONFIG_H /* for some tests */ |