summaryrefslogtreecommitdiff
path: root/libextra/auth_srp_passwd.c
diff options
context:
space:
mode:
Diffstat (limited to 'libextra/auth_srp_passwd.c')
-rw-r--r--libextra/auth_srp_passwd.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/libextra/auth_srp_passwd.c b/libextra/auth_srp_passwd.c
index 580cc7f438..43d83832b5 100644
--- a/libextra/auth_srp_passwd.c
+++ b/libextra/auth_srp_passwd.c
@@ -280,20 +280,6 @@ int _gnutls_srp_pwd_read_entry( gnutls_session state, char* username,
return GNUTLS_E_SRP_PWD_ERROR;
}
- /* use the callback to select a password file. If set.
- */
- if (state->internals.server_srp_callback!=NULL) {
- pwd_index = state->internals.server_srp_callback(
- state, (const char**)cred->password_file,
- (const char**)cred->password_conf_file,
- cred->password_files);
-
- if (pwd_index < 0) {
- gnutls_assert();
- return GNUTLS_E_SRP_PWD_ERROR;
- }
- }
-
/* Open the selected password file.
*/
fd = fopen( cred->password_file[pwd_index], "r");