From: Greg Hudson Date: Thu, 15 Sep 2011 20:00:15 +0000 (+0000) Subject: Fix a typo in r25026 X-Git-Tag: krb5-1.10-alpha1~195 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0e35af54fecdb88c4771f4c7cf6416f8c3b54ab0;p=krb5.git Fix a typo in r25026 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 --- diff --git a/src/lib/krb5/krb/init_ctx.c b/src/lib/krb5/krb/init_ctx.c index 40c9f9562..85c742eee 100644 --- a/src/lib/krb5/krb/init_ctx.c +++ b/src/lib/krb5/krb/init_ctx.c @@ -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