unused no_session_cache fix

This commit is contained in:
toddouska 2012-11-27 15:39:40 -08:00
parent faa7283ff3
commit 4af555b502
1 changed files with 3 additions and 0 deletions

View File

@ -3172,6 +3172,9 @@ int AddSession(CYASSL* ssl)
/* No session cache version */
CYASSL_SESSION* GetSession(CYASSL* ssl, byte* masterSecret)
{
(void)ssl;
(void)masterSecret;
return NULL;
}