Procházet zdrojové kódy

HAVE_C99_SNPRINTF is not tested, so remove from ifdef

git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@177 f882894a-f735-0410-b71e-b25c423dba1c
Karl DeBisschop před 23 roky
rodič
revize
d3af657e46
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      plugins/snprintf.c

+ 1 - 1
plugins/snprintf.c

@@ -789,7 +789,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_SNPRINTF) */
  int snprintf(char *str,size_t count,const char *fmt,...)
 {
 	size_t ret;