* change_password.c: Fix incorrect filename in comment.
* g_in_tkt.c (krb_get_in_tkt_preauth): Call krb_in_tkt() rather
than in_tkt().
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15182
dc483132-0cff-0310-8789-
dd5450dbe970
return KSUCCESS;
}
-int KRB5_CALLCONV
-in_tkt(
- char *name,
- char *inst)
-{
- char realm[REALM_SZ];
- krb_get_lrealm(realm, 1);
- return krb_in_tkt(name, inst, realm);
-}
-
int KRB5_CALLCONV
krb_save_credentials(
char *service,
2003-02-11 Tom Yu <tlyu@mit.edu>
+ * CCache-glue.c: Delete in_tkt().
+
+ * change_password.c: Fix incorrect filename in comment.
+
+ * g_in_tkt.c (krb_get_in_tkt_preauth): Call krb_in_tkt() rather
+ than in_tkt().
+
* CCache-glue.c (krb_in_tkt): Rename from in_tkt().
(in_tkt): Implement in terms of krb_in_tkt() to match existing
Unix and Windows API. This shouldn't be a problem because it
/*
- * g_pw_in_tkt.c
+ * change_password.c
*
* Copyright 1987, 1988, 2002 by the Massachusetts Institute of
* Technology. All Rights Reserved.
arg, preauth_p, preauth_len,
&creds, &laddr);
if (retval != KSUCCESS) break;
- if (in_tkt(user, instance) != KSUCCESS) {
+ if (krb_in_tkt(user, instance, realm) != KSUCCESS) {
retval = INTK_ERR;
break;
}