From 0b09bd900f857aac928cd7e6bc059b1e0c8b718a Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Fri, 14 May 2010 12:49:24 +0200 Subject: [PATCH] Typos in last patch --- ConfigureChecks.cmake | 2 +- include/libssh/priv.h | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index fd31e4ec..c214660f 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -48,7 +48,7 @@ if (WIN32) if(NOT HAVE_SNPRINTF) check_function_exists(_snprintf HAVE__SNPRINTF) check_function_exists(_snprintf_s HAVE__SNPRINTF_S) - endif(NOT HAVE_HAVE_SNPRINTF) + endif(NOT HAVE_SNPRINTF) check_function_exists(strncpy HAVE_STRNCPY) set(HAVE_SELECT TRUE) diff --git a/include/libssh/priv.h b/include/libssh/priv.h index 77423bfb..f3c2babd 100644 --- a/include/libssh/priv.h +++ b/include/libssh/priv.h @@ -65,11 +65,13 @@ #ifndef HAVE_VSNPRINTF #ifdef HAVE__VSNPRINTF_S #define vsnprintf(s, n, f, v) _vsnprintf_s((s), (n), _TRUNCATE, (f), (v)) -#elif HAVE__VSNPRINTF +#else +#ifdef HAVE__VSNPRINTF #define vsnprintf _vsnprintf #else /* HAVE_VSNPRINTF */ #error "No vsnprintf compatible function found" -#endif +#endif /* HAVE__VSNPRINTF */ +#endif /* HAVE__VSNPRINTF_S */ #endif /* HAVE_VSNPRINTF */ #ifndef HAVE_STRNCPY