pacify mdoclink

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12331 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2003-05-26 21:56:28 +00:00
parent ea7714fd49
commit cb584f6348
13 changed files with 236 additions and 12 deletions

View File

@@ -150,7 +150,7 @@ out2:
*/
static krb5_error_code
setpw_send_request (krb5_context context,
mssetpw_send_request (krb5_context context,
krb5_auth_context *auth_context,
krb5_creds *creds,
krb5_principal targprinc,
@@ -394,6 +394,17 @@ process_reply (krb5_context context,
}
}
static krb5_error_code
setpw_send_request (krb5_context context,
krb5_auth_context *auth_context,
krb5_creds *creds,
krb5_principal targprinc,
int sock,
char *passwd,
const char *host)
{
}
/*
* change the password using the credentials in `creds' (for the
@@ -421,7 +432,8 @@ struct kpwd_proc {
kpwd_send_request send_req;
kpwd_process_reply process_rep;
} procs[] = {
{ "MS set password", setpw_send_request, process_reply },
{ "set password", setpw_send_request, process_reply },
{ "MS set password", mssetpw_send_request, process_reply },
{ "change password", chgpw_send_request, process_reply },
{ NULL }
};