snprintf is called _snprintf on windows.

git-svn-id: svn://10.0.0.236/trunk@92031 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
nicolson%netscape.com 2001-04-11 23:46:36 +00:00
parent edf0af3066
commit 8c80816232

View File

@ -540,6 +540,12 @@ finish:
return statusObj;
}
#ifdef _WINDOWS
#define SNPRINTF _snprintf
#else
#define SNPRINTF snprintf
#endif
JNIEXPORT void JNICALL
Java_org_mozilla_jss_ssl_SSLSocket_setCipherPreference(
JNIEnv *env, jobject clazz, jint cipher, jboolean enable)
@ -550,7 +556,7 @@ Java_org_mozilla_jss_ssl_SSLSocket_setCipherPreference(
status = SSL_CipherPrefSetDefault(cipher, enable);
if(status != SECSuccess) {
char buf[128];
snprintf(buf, 128, "Failed to %s cipher 0x%lx\n",
SNPRINTF(buf, 128, "Failed to %s cipher 0x%lx\n",
(enable ? "enable" : "disable"), cipher);
JSS_throwMsg(env, SOCKET_EXCEPTION, buf);
goto finish;