add fix-pykerberos-api.diff

This commit is contained in:
Timo Aaltonen 2014-04-04 11:11:11 +03:00
parent 7938cb1287
commit aba9456fa1
2 changed files with 13 additions and 0 deletions

12
debian/patches/fix-pykerberos-api.diff vendored Normal file
View File

@ -0,0 +1,12 @@
diff --git a/ipalib/rpc.py b/ipalib/rpc.py
index 81e7aa3..ce5f2a0 100644
--- a/ipalib/rpc.py
+++ b/ipalib/rpc.py
@@ -380,7 +380,7 @@ class KerbTransport(SSLTransport):
service = "HTTP@" + host.split(':')[0]
try:
- (rc, vc) = kerberos.authGSSClientInit(service, self.flags)
+ (rc, vc) = kerberos.authGSSClientInit(service, gssflags=self.flags)
except kerberos.GSSError, e:
self._handle_exception(e)

View File

@ -18,3 +18,4 @@ add-debian-platform.diff
use-new-nssdb.diff
include-ldflags-otpd.diff
fix-pykerberos-api.diff