Skip to content

Commit e2fd638

Browse files
committed
JNI: fix WOLFSSL_FAILURE usage in com_wolfssl_WolfSSLSession.c when NO_SESSION_CACHE is defined
1 parent c38b469 commit e2fd638

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

native/com_wolfssl_WolfSSLSession.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6358,7 +6358,7 @@ JNIEXPORT jint JNICALL Java_com_wolfssl_WolfSSLSession_hasTicket
63586358
(void)jenv;
63596359
(void)jcl;
63606360
(void)sessionPtr;
6361-
return (jint)WolfSSL.SSL_FAILURE;
6361+
return (jint)WOLFSSL_FAILURE;
63626362
#endif
63636363
}
63646364

0 commit comments

Comments
 (0)