summaryrefslogtreecommitdiff
path: root/source3/lib/snprintf.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-07-23 03:59:57 +0000
committerTim Potter <tpot@samba.org>2003-07-23 03:59:57 +0000
commit8991cecd543172c10da92853b9b861ce85dafeff (patch)
tree52fba5e89705e8695bdc6ab732ca1eea2df4db7f /source3/lib/snprintf.c
parent0c72828e3de3e20b72d2a1f1bb80fc5685bfdbea (diff)
downloadsamba-8991cecd543172c10da92853b9b861ce85dafeff.tar.gz
samba-8991cecd543172c10da92853b9b861ce85dafeff.tar.bz2
samba-8991cecd543172c10da92853b9b861ce85dafeff.zip
A fix for bug 174. I'm pushing this to the tree to test it on one of
the build farm machines that I don't have direct access to (hpntc9I). (This used to be commit b01965823341bbabb74dcbc09d379b43db2ec680)
Diffstat (limited to 'source3/lib/snprintf.c')
-rw-r--r--source3/lib/snprintf.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/source3/lib/snprintf.c b/source3/lib/snprintf.c
index 9b9ceb60ca..1978067c37 100644
--- a/source3/lib/snprintf.c
+++ b/source3/lib/snprintf.c
@@ -823,12 +823,10 @@ static void dopr_outch(char *buffer, size_t *currlen, size_t maxlen, char c)
*
* The logic for these two is that we need our own definition if the
* OS *either* has no definition of *sprintf, or if it does have one
- * that doesn't work properly according to the autoconf test. Perhaps
- * these should really be smb_snprintf to avoid conflicts with buggy
- * linkers? -- mbp
+ * that doesn't work properly according to the autoconf test.
*/
#if !defined(HAVE_SNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
- int snprintf(char *str,size_t count,const char *fmt,...)
+ int smb_snprintf(char *str,size_t count,const char *fmt,...)
{
size_t ret;
va_list ap;