diff options
author | Gerald Carter <jerry@samba.org> | 2004-08-06 05:44:26 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2004-08-06 05:44:26 +0000 |
commit | 547587d57c0ca7fa5babac358d4b2f67a472e142 (patch) | |
tree | abbcd3ba0d6ab0e15317fc0930a3c8e109f322f9 /source/lib/snprintf.c | |
parent | fecd5ea163ffcd1bbee5b06e05112dbff9aa71b1 (diff) | |
download | samba-3.0.6rc2.tar.gz samba-3.0.6rc2.tar.xz samba-3.0.6rc2.zip |
r1664: last changes before 3.0.6rc2samba-3.0.6rc2
Diffstat (limited to 'source/lib/snprintf.c')
-rw-r--r-- | source/lib/snprintf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/lib/snprintf.c b/source/lib/snprintf.c index 79de3c0ca5d..633517def28 100644 --- a/source/lib/snprintf.c +++ b/source/lib/snprintf.c @@ -821,6 +821,7 @@ static void dopr_outch(char *buffer, size_t *currlen, size_t maxlen, char c) { return dopr(str, count, fmt, args); } +#define vsnprintf smb_vsnprintf #endif /* yes this really must be a ||. Don't muck with this (tridge) @@ -840,6 +841,7 @@ int smb_snprintf(char *str,size_t count,const char *fmt,...) va_end(ap); return ret; } +#define snprintf smb_snprintf #endif #endif |