Use new call krb5_vercheck() for Windows timebomb checking; this call
authorTheodore Tso <tytso@mit.edu>
Sat, 21 Dec 1996 06:35:49 +0000 (06:35 +0000)
committerTheodore Tso <tytso@mit.edu>
Sat, 21 Dec 1996 06:35:49 +0000 (06:35 +0000)
returns an error code, which is returned to the user if the timebomb
should be activated.

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

src/lib/krb5/krb/ChangeLog
src/lib/krb5/krb/init_ctx.c

index 18bf88594437adcbf03727c130a0e3c4b003d5be..00c7d361f330a4da26d87fe86100b20b20f25831 100644 (file)
@@ -1,3 +1,10 @@
+Sat Dec 21 01:26:11 1996  Theodore Y. Ts'o  <tytso@mit.edu>
+
+       * init_ctx.c (krb5_init_context): Use new call krb5_vercheck() for
+               Windows timebomb checking; this call returns an error
+               code, which is returned to the user if the timebomb should
+               be activated.
+
 Thu Nov 21 13:54:01 1996  Ezra Peisach  <epeisach@mit.edu>
 
        * recvauth.c (krb5_recvauth): If there is an error, and the server
index 19aaf66424fe12cab3d2fa5982cba9dcb23b5f3c..2794fbcf65db8adac69e936d0c4497691f04449e 100644 (file)
@@ -27,7 +27,7 @@
 #include <ctype.h>
 
 #if (defined(_MSDOS) || defined(_WIN32))
-extern void krb5_win_do_init();
+extern krb5_error_code krb5_vercheck();
 #endif
 
 krb5_error_code INTERFACE
@@ -38,12 +38,17 @@ krb5_init_context(context)
        krb5_error_code retval;
        int tmp;
 
+       /* Initialize error tables */
+       krb5_init_ets(ctx);
+
 #if (defined(_MSDOS) || defined(_WIN32))
        /*
-        * krb5_win_do_init() is defined in win_glue.c, and this is
+        * krb5_vercheck() is defined in win_glue.c, and this is
         * where we handle the timebomb and version server checks.
         */
-       krb5_win_do_init();
+       retval = krb5_vercheck();
+       if (retval)
+               return retval;
 #endif
 
        *context = 0;
@@ -54,9 +59,6 @@ krb5_init_context(context)
        memset(ctx, 0, sizeof(struct _krb5_context));
        ctx->magic = KV5M_CONTEXT;
 
-       /* Initialize error tables */
-       krb5_init_ets(ctx);
-
        /* Set the default encryption types, possible defined in krb5/conf */
        if ((retval = krb5_set_default_in_tkt_ktypes(ctx, NULL)))
                goto cleanup;