svn rev #25180: trunk/src/lib/krb5/krb/

ghudson@MIT.EDU ghudson at MIT.EDU
Thu Sep 15 16:00:16 EDT 2011


http://src.mit.edu/fisheye/changelog/krb5/?cs=25180
Commit By: ghudson
Log Message:
Fix a typo in r25026.

A stray "p" was added to krb5_init_context_profile() inside a _WIN32
block.


Changed Files:
U   trunk/src/lib/krb5/krb/init_ctx.c
Modified: trunk/src/lib/krb5/krb/init_ctx.c
===================================================================
--- trunk/src/lib/krb5/krb/init_ctx.c	2011-09-14 19:00:39 UTC (rev 25179)
+++ trunk/src/lib/krb5/krb/init_ctx.c	2011-09-15 20:00:15 UTC (rev 25180)
@@ -143,12 +143,12 @@
      * The context being NULL is ok.
      */
     krb5_win_ccdll_load(ctx);
-    p
-        /*
-         * krb5_vercheck() is defined in win_glue.c, and this is
-         * where we handle the timebomb and version server checks.
-         */
-        retval = krb5_vercheck();
+
+    /*
+     * krb5_vercheck() is defined in win_glue.c, and this is
+     * where we handle the timebomb and version server checks.
+     */
+    retval = krb5_vercheck();
     if (retval)
         return retval;
 #endif




More information about the cvs-krb5 mailing list