Fix unused variable warning in ssl_parse_certificate_coordinate()
This was triggered in client-only builds.
This commit is contained in:
parent
bdf75eb243
commit
84d9d2734f
1 changed files with 2 additions and 0 deletions
|
@ -6020,6 +6020,8 @@ static int ssl_parse_certificate_coordinate( mbedtls_ssl_context *ssl,
|
||||||
return( SSL_CERTIFICATE_SKIP );
|
return( SSL_CERTIFICATE_SKIP );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
((void) authmode);
|
||||||
#endif /* MBEDTLS_SSL_SRV_C */
|
#endif /* MBEDTLS_SSL_SRV_C */
|
||||||
|
|
||||||
return( SSL_CERTIFICATE_EXPECTED );
|
return( SSL_CERTIFICATE_EXPECTED );
|
||||||
|
|
Loading…
Reference in a new issue