summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2011-09-15 20:00:15 +0000
committerGreg Hudson <ghudson@mit.edu>2011-09-15 20:00:15 +0000
commit0e35af54fecdb88c4771f4c7cf6416f8c3b54ab0 (patch)
treea73cc9a2b029aa050ab78d28c188f6037f78fbd8 /src
parent31d5a1ed8d94ddc5614cf5c4f5a3bafb76a0914d (diff)
downloadkrb5-0e35af54fecdb88c4771f4c7cf6416f8c3b54ab0.tar.gz
krb5-0e35af54fecdb88c4771f4c7cf6416f8c3b54ab0.tar.xz
krb5-0e35af54fecdb88c4771f4c7cf6416f8c3b54ab0.zip
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
Diffstat (limited to 'src')
-rw-r--r--src/lib/krb5/krb/init_ctx.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/krb5/krb/init_ctx.c b/src/lib/krb5/krb/init_ctx.c
index 40c9f95623..85c742eee2 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