2000-4-13 Alexandra Ellwood <lxs@mit.edu>
authorAlexandra Ellwood <lxs@mit.edu>
Thu, 13 Apr 2000 22:06:53 +0000 (22:06 +0000)
committerAlexandra Ellwood <lxs@mit.edu>
Thu, 13 Apr 2000 22:06:53 +0000 (22:06 +0000)
* init_os_ctx.c: Added support to store a krb5_principal in the os_context
along with the default ccache name (if known, this principal is the same
as the last time we looked at the ccache.

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

src/lib/krb5/os/ChangeLog
src/lib/krb5/os/init_os_ctx.c

index 768f1e3a91cf99f3289552983f30b2a754c25c2e..c0dc2c574a9679d26d383e1bdcddf526b3e54910 100644 (file)
@@ -1,3 +1,9 @@
+2000-4-13      Alexandra Ellwood <lxs@mit.edu>
+
+       * init_os_ctx.c: Added support to store a krb5_principal in the os_context 
+       along with the default ccache name (if known, this principal is the same 
+       as the last time we looked at the ccache.
+
 2000-03-20  Miro Jurisic  <meeroh@mit.edu>
 
        * def_realm.c (krb5_free_default_realm): Added, use to free
index 48d8bc2ada4cef00c11218d680d254155300e7cb..5222e6af8a639abb3e74823c94b221af0e5dd6ad 100644 (file)
@@ -404,7 +404,8 @@ krb5_os_init_context(ctx)
        os_ctx->usec_offset = 0;
        os_ctx->os_flags = 0;
        os_ctx->default_ccname = 0;
-
+       os_ctx->default_ccprincipal = 0;
+       
        krb5_cc_set_default_name(ctx, NULL);
 
        retval = os_init_paths(ctx);
@@ -519,17 +520,22 @@ krb5_os_free_context(ctx)
        if (!os_ctx)
                return;
 
-        if (os_ctx->default_ccname) {
+       if (os_ctx->default_ccname) {
                free(os_ctx->default_ccname);
-                os_ctx->default_ccname = 0;
-        }
+               os_ctx->default_ccname = 0;
+       }
+
+       if (os_ctx->default_ccprincipal) {
+               krb5_free_principal (ctx, os_ctx->default_ccprincipal);
+               os_ctx->default_ccprincipal = 0;
+       }
 
        os_ctx->magic = 0;
        free(os_ctx);
        ctx->os_context = 0;
 
-        if (ctx->profile) {
-           profile_release(ctx->profile);
-            ctx->profile = 0;
-        }
+       if (ctx->profile) {
+               profile_release(ctx->profile);
+           ctx->profile = 0;
+       }
 }