summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin@redhat.com>2011-11-15 11:19:25 -0500
committerNalin Dahyabhai <nalin@redhat.com>2011-11-15 11:19:25 -0500
commit5e9b206130bc1e09d1722923668c8255a25875d7 (patch)
tree58147b523e6237941f0a305a92707052e319a555
parentfddd6b40af32d51b90e1334dfda5b8a83d1ea6f1 (diff)
downloadkrb5-5e9b206130bc1e09d1722923668c8255a25875d7.tar.gz
krb5-5e9b206130bc1e09d1722923668c8255a25875d7.tar.xz
krb5-5e9b206130bc1e09d1722923668c8255a25875d7.zip
don't need this any more
-rw-r--r--krb5-trunk-gss_delete_sec.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/krb5-trunk-gss_delete_sec.patch b/krb5-trunk-gss_delete_sec.patch
deleted file mode 100644
index c40022c..0000000
--- a/krb5-trunk-gss_delete_sec.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-Author: ghudson
-Date: Mon May 9 17:28:07 2011 +0000
-
- ticket: 6908
- subject: Delete sec context properly in gss_krb5_export_lucid_sec_context
- target_version: 1.9.2
- tags: pullup
-
- Since r21690, gss_krb5_export_lucid_sec_context() has been passing a
- union context to krb5_gss_delete_sec_context(), causing a crash as the
- krb5 routine attempts to interpret a union context structure as a krb5
- GSS context. Call the mechglue gss_delete_sec_context instead.
-
-
- svn://anonsvn.mit.edu:/krb5/trunk@24917
-
---- a/src/lib/gssapi/krb5/krb5_gss_glue.c
-+++ b/src/lib/gssapi/krb5/krb5_gss_glue.c
-@@ -196,7 +196,7 @@ gss_krb5_export_lucid_sec_context(OM_uint32 *minor_status,
- /* Clean up the context state (it is an error for
- * someone to attempt to use this context again)
- */
-- (void)krb5_gss_delete_sec_context(minor_status, context_handle, NULL);
-+ (void)gss_delete_sec_context(minor_status, context_handle, NULL);
- *context_handle = GSS_C_NO_CONTEXT;
-
- generic_gss_release_buffer_set(&minor, &data_set);