Fix a typo in r25026
authorGreg Hudson <ghudson@mit.edu>
Thu, 15 Sep 2011 20:00:15 +0000 (20:00 +0000)
committerGreg Hudson <ghudson@mit.edu>
Thu, 15 Sep 2011 20:00:15 +0000 (20:00 +0000)
A stray "p" was added to krb5_init_context_profile() inside a _WIN32
block.

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

src/lib/krb5/krb/init_ctx.c

index 40c9f956237d88384e05d7e95a2a10478c297d7c..85c742eee2f59564a09b7afa1faa479a6d9d0312 100644 (file)
@@ -143,12 +143,12 @@ krb5_init_context_profile(profile_t profile, krb5_flags flags,
      * 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