summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-05-05 03:31:50 +0000
committerTim Potter <tpot@samba.org>2003-05-05 03:31:50 +0000
commitea3d32fe9c15d49c9b90ed5da208593d51fbb7ea (patch)
treedad9c51ab84de05eb2a5552a91a4eba31dfcf55b /source3
parentc4c55a00db6f2793e96940ef9fe3e85fe47bed3f (diff)
downloadsamba-ea3d32fe9c15d49c9b90ed5da208593d51fbb7ea.tar.gz
samba-ea3d32fe9c15d49c9b90ed5da208593d51fbb7ea.tar.bz2
samba-ea3d32fe9c15d49c9b90ed5da208593d51fbb7ea.zip
Fixed typo introduced in reverted patch from version 1.12.4.5
(This used to be commit 4fccc1f16da74ac9e98bd58c7f11674c48c4dbac)
Diffstat (limited to 'source3')
-rw-r--r--source3/lib/snprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/snprintf.c b/source3/lib/snprintf.c
index 588e9cf6cb..02cf782520 100644
--- a/source3/lib/snprintf.c
+++ b/source3/lib/snprintf.c
@@ -820,7 +820,7 @@ static void dopr_outch(char *buffer, size_t *currlen, size_t maxlen, char c)
* these should really be smb_snprintf to avoid conflicts with buggy
* linkers? -- mbp
*/
-#if !defined(HAVE_SNPRINTF) || !defined(HAVE_C99_SNPRINTF)
+#if !defined(HAVE_SNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
int snprintf(char *str,size_t count,const char *fmt,...)
{
size_t ret;