2
0
mirror of https://github.com/openssl/openssl.git synced 2025-02-23 14:42:15 +08:00

Mark SRP_VBASE_get_by_user() as deprecated

The function SRP_VBASE_get_by_user() is declared as deprecated but the
implementation was not.

Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
Matt Caswell 2016-03-10 09:20:06 +00:00
parent 0f1d814c23
commit 1e45206fb9

View File

@ -502,6 +502,7 @@ static SRP_user_pwd *find_user(SRP_VBASE *vb, char *username)
return NULL; return NULL;
} }
#if OPENSSL_API_COMPAT < 0x10100000L
/* /*
* DEPRECATED: use SRP_VBASE_get1_by_user instead. * DEPRECATED: use SRP_VBASE_get1_by_user instead.
* This method ignores the configured seed and fails for an unknown user. * This method ignores the configured seed and fails for an unknown user.
@ -512,6 +513,7 @@ SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username)
{ {
return find_user(vb, username); return find_user(vb, username);
} }
#endif
/* /*
* Ownership of the returned pointer is released to the caller. * Ownership of the returned pointer is released to the caller.