From 0e35af54fecdb88c4771f4c7cf6416f8c3b54ab0 Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Thu, 15 Sep 2011 20:00:15 +0000 Subject: [PATCH] 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 --- src/lib/krb5/krb/init_ctx.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 -- 2.26.2