Commit 73cd6175 authored by Matt Caswell's avatar Matt Caswell
Browse files

Fix no-psk compile failure



Reviewed-by: default avatarTim Hudson <tjh@openssl.org>
parent bbf431cb
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -93,6 +93,7 @@ OPTIONS ciphers_options[] = {
    {NULL}
};

#ifndef OPENSSL_NO_PSK
static unsigned int dummy_psk(SSL *ssl, const char *hint, char *identity,
                              unsigned int max_identity_len,
                              unsigned char *psk,
@@ -100,6 +101,7 @@ static unsigned int dummy_psk(SSL *ssl, const char *hint, char *identity,
{
    return 0;
}
#endif

int ciphers_main(int argc, char **argv)
{