Explorar el Código

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 hace 23 años
padre
commit
d3af657e46
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;