~ubuntu-branches/ubuntu/trusty/freeipa/trusty

« back to all changes in this revision

Viewing changes to debian/patches/fix-pykerberos-api.diff

  • Committer: Package Import Robot
  • Author(s): Timo Aaltonen
  • Date: 2014-04-10 11:57:53 UTC
  • mfrom: (0.1.4 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20140410115753-ngv9y6dn7mx3akqe
Tags: 3.3.4-0ubuntu3
* Merge from unreleased debian git:
  Fix ipa-client-install issues (LP: #1282818)
  - fix auth platform module
  - use new pykerberos api
  - don't install a default conf
  - use sqlite-based nssdb's instead of old

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--- a/ipalib/rpc.py
 
2
+++ b/ipalib/rpc.py
 
3
@@ -380,7 +380,7 @@ class KerbTransport(SSLTransport):
 
4
         service = "HTTP@" + host.split(':')[0]
 
5
 
 
6
         try:
 
7
-            (rc, vc) = kerberos.authGSSClientInit(service, self.flags)
 
8
+            (rc, vc) = kerberos.authGSSClientInit(service, gssflags=self.flags)
 
9
         except kerberos.GSSError, e:
 
10
             self._handle_exception(e)
 
11