* memcache.c: Add krb_in_tkt() function to initialize ticket for a
authorDanilo Almeida <dalmeida@mit.edu>
Thu, 20 Jul 2000 06:07:34 +0000 (06:07 +0000)
committerDanilo Almeida <dalmeida@mit.edu>
Thu, 20 Jul 2000 06:07:34 +0000 (06:07 +0000)
given principal.  It is like in_tkt() but it is public and also
takes a realm for credentials caches that require a full
principal name (e.g., CCAPI).

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12574 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb4/ChangeLog
src/lib/krb4/memcache.c

index e2f10196f33517ef1b97ea6b370b19cbb70c6b39..65719dedd5ac9cc44c8fda71ab3fd73becabd50a 100644 (file)
@@ -1,3 +1,10 @@
+2000-07-20  Danilo Almeida  <dalmeida@mit.edu>
+
+       * memcache.c: Add krb_in_tkt() function to initialize ticket for a
+       given principal.  It is like in_tkt() but it is public and also
+       takes a realm for credentials caches that require a full
+       principal name (e.g., CCAPI).
+
 2000-07-19  Danilo Almeida  <dalmeida@mit.edu>
 
        * in_tkt.c: Add krb_in_tkt() function to initialize ticket for a
index a7eccc8099d3167e4ccb2bb1c0b42480d17f313d..9d795049772d5252655ffeaf72237723c8eccd6b 100644 (file)
@@ -279,6 +279,15 @@ in_tkt(pname,pinst)
        
 }
 
+KRB5_DLLIMP int KRB5_CALLCONV
+krb_in_tkt(pname, pinst, prealm)
+    char *pname;
+    char *pinst;
+    char *prealm;
+{
+    return in_tkt(pname, pinst);
+}
+
 /*
  * dest_tkt() is used to destroy the ticket store upon logout.
  * If the ticket file does not exist, dest_tkt() returns RET_TKFIL.