summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-05-05 03:34:19 +0000
committerTim Potter <tpot@samba.org>2003-05-05 03:34:19 +0000
commitc724747e2d282cc63cbaca355c2e169ef393904e (patch)
tree7998f69e432afe0d319bd7d8367dc29182eeacaf /source3
parent4b8d28f8320ebf8d9ee1105e36c95ad0e3a4579c (diff)
downloadsamba-c724747e2d282cc63cbaca355c2e169ef393904e.tar.gz
samba-c724747e2d282cc63cbaca355c2e169ef393904e.tar.bz2
samba-c724747e2d282cc63cbaca355c2e169ef393904e.zip
Fixed typo introduced when reverting patch from revision 1.19
(This used to be commit a102734263a2cbd5b9eafbddf036e173b507a7fd)
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;