From 53f0cb4584277e867bd965dcc6355cf89bda5062 Mon Sep 17 00:00:00 2001 From: stroeder Date: Sun, 23 Mar 2014 19:06:47 +0000 Subject: [PATCH] Fixed constant ldap.sasl.CB_GETREALM --- CHANGES | 3 ++- Lib/ldap/sasl.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 18e2632..557aaf7 100644 --- a/CHANGES +++ b/CHANGES @@ -17,6 +17,7 @@ Lib/ Modules/ * New constant ldap.SCOPE_SUBORDINATE derived from ldap.h for draft-sermersheim-ldap-subordinate-scope +* Fixed constant ldap.sasl.CB_GETREALM (thanks to Martin Pfeifer) ---------------------------------------------------------------- Released 2.4.14 2014-01-31 @@ -1096,4 +1097,4 @@ Released 2.0.0pre02 2002-02-01 ---------------------------------------------------------------- Released 1.10alpha3 2000-09-19 -$Id: CHANGES,v 1.316 2014/03/12 23:02:42 stroeder Exp $ +$Id: CHANGES,v 1.317 2014/03/23 19:06:48 stroeder Exp $ diff --git a/Lib/ldap/sasl.py b/Lib/ldap/sasl.py index 4e2d23c..39d6eb1 100644 --- a/Lib/ldap/sasl.py +++ b/Lib/ldap/sasl.py @@ -3,7 +3,7 @@ See http://www.python-ldap.org/ for details. -\$Id: sasl.py,v 1.15 2009/07/26 11:09:58 stroeder Exp $ +\$Id: sasl.py,v 1.16 2014/03/23 19:06:47 stroeder Exp $ Description: The ldap.sasl module provides SASL authentication classes. @@ -31,7 +31,7 @@ CB_PASS = 0x4004 CB_ECHOPROMPT = 0x4005 CB_NOECHOPROMPT= 0x4006 -CB_GETREALM = 0x4007 +CB_GETREALM = 0x4008 class sasl: """This class handles SASL interactions for authentication.