Skip to content
This repository has been archived by the owner on Jan 23, 2021. It is now read-only.

Commit

Permalink
Fixed constant ldap.sasl.CB_GETREALM
Browse files Browse the repository at this point in the history
  • Loading branch information
stroeder committed Mar 23, 2014
1 parent df5f0eb commit 53f0cb4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 $
4 changes: 2 additions & 2 deletions Lib/ldap/sasl.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 53f0cb4

Please sign in to comment.