~ubuntu-branches/ubuntu/maverick/krb5/maverick

« back to all changes in this revision

Viewing changes to debian/patches/kdc-errno

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hartman
  • Date: 2009-05-07 16:16:34 UTC
  • mfrom: (13.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20090507161634-xqyk0s9na0le4flj
Tags: 1.7dfsg~beta1-4
When  decrypting the TGS response fails with the subkey, try with the
session key to work around Heimdal bug, Closes: #527353 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
This file makes repeated reference to E* constants, and therefore must
2
 
include errno.h.  It's possible that errno.h is provided by one of the
3
 
other headers, but it's best practice to include it locally regardless.
4
 
 
5
 
Kerberos RT #3266
6
 
 
7
 
--- krb5-1.4.2.orig/src/kdc/kerberos_v4.c
8
 
+++ krb5-1.4.2/src/kdc/kerberos_v4.c
9
 
@@ -141,6 +141,7 @@
10
 
  */
11
 
 #include "com_err.h"
12
 
 #include "extern.h"            /* to pick up master_princ */
13
 
+#include <errno.h>
14
 
 
15
 
 static krb5_data *response;
16