diff options
author | Tim Potter <tpot@samba.org> | 2003-05-05 03:31:50 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-05-05 03:31:50 +0000 |
commit | 4fccc1f16da74ac9e98bd58c7f11674c48c4dbac (patch) | |
tree | 8d8cb3290cd9c57b0f35a544d03cfc99e3eb6831 /source/lib/snprintf.c | |
parent | 52d5ff7bdafabb421e76b6b19d95be22b380ddb4 (diff) | |
download | samba-4fccc1f16da74ac9e98bd58c7f11674c48c4dbac.tar.gz samba-4fccc1f16da74ac9e98bd58c7f11674c48c4dbac.tar.xz samba-4fccc1f16da74ac9e98bd58c7f11674c48c4dbac.zip |
Fixed typo introduced in reverted patch from version 1.12.4.5
Diffstat (limited to 'source/lib/snprintf.c')
-rw-r--r-- | source/lib/snprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/snprintf.c b/source/lib/snprintf.c index 588e9cf6cb0..02cf782520b 100644 --- a/source/lib/snprintf.c +++ b/source/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; |