* rc_dfl.c (krb5_rc_dfl_init): default lifespan to
authorTom Yu <tlyu@mit.edu>
Mon, 27 Nov 1995 20:51:53 +0000 (20:51 +0000)
committerTom Yu <tlyu@mit.edu>
Mon, 27 Nov 1995 20:51:53 +0000 (20:51 +0000)
context->clockskew in case some app can't get at the
internals of the context struct.

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

src/lib/krb5/rcache/ChangeLog
src/lib/krb5/rcache/rc_dfl.c

index 7177ffc32c4e8ca86dc7b27f6261ece129222f78..0001ac9b9ccd247f5c9a052cb0d993ac2143c7b2 100644 (file)
@@ -1,3 +1,9 @@
+Mon Nov 27 14:52:23 1995  Tom Yu  <tlyu@dragons-lair.MIT.EDU>
+
+       * rc_dfl.c (krb5_rc_dfl_init): default lifespan to
+               context->clockskew in case some app can't get at the
+               internals of the context struct.
+
 Fri Oct  6 22:05:31 1995  Theodore Y. Ts'o  <tytso@dcl>
 
        * Makefile.in: Remove ##DOS!include of config/windows.in.
index a6cd76cc1d20e29c1be4f8e6a9ba32e35c7d581c..90766a1bb379c882fe8ee071c9ee41c868658559 100644 (file)
@@ -189,7 +189,8 @@ krb5_deltat lifespan;
     struct dfl_data *t = (struct dfl_data *)id->data;
     krb5_error_code retval;
 
-    t->lifespan = lifespan;
+    t->lifespan = lifespan ? lifespan : context->clockskew;
+    /* default to clockskew from the context */
 #ifndef NOIOSTUFF
     if ((retval = krb5_rc_io_creat(context, &t->d,&t->name)))
        return retval;