]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Fix selective definition of *snprintf. (Welcome to mbp's breakage world.)
authorMartin Pool <mbp@samba.org>
Thu, 6 Sep 2001 06:27:02 +0000 (06:27 +0000)
committerMartin Pool <mbp@samba.org>
Thu, 6 Sep 2001 06:27:02 +0000 (06:27 +0000)
rsync.h

diff --git a/rsync.h b/rsync.h
index b53fa3ded443a58a24fbb2b8e4441abc7b33a889..5091a9e5696a5a8b59f14611e3fb51ccac67d89e 100644 (file)
--- a/rsync.h
+++ b/rsync.h
@@ -401,11 +401,11 @@ int asprintf(char **ptr, const char *format, ...);
 int vasprintf(char **ptr, const char *format, va_list ap);
 #endif
 
-#if !defined(HAVE_VSNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
+#if !defined(HAVE_VSNPRINTF) && !defined(HAVE_C99_VSNPRINTF)
 int vsnprintf (char *str, size_t count, const char *fmt, va_list args);
 #endif
 
-#if !defined(HAVE_SNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
+#if !defined(HAVE_SNPRINTF) && !defined(HAVE_C99_VSNPRINTF)
 int snprintf(char *str,size_t count,const char *fmt,...);
 #endif