Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble-scripts.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Finck <colin@reactos.org>2015-02-09 17:39:03 +0300
committerColin Finck <colin@reactos.org>2015-02-09 18:02:25 +0300
commitaa9266c34cb2dc402d5a690d8bfc13e6f4f47aef (patch)
tree2cf908dee8fe06272a5b85ee1950105ac8c7de84
parent468dfbfa9d5365c951fa39512385941a83dcd41f (diff)
Fix nameToId for usernames not in cache
-rw-r--r--Authenticators/LDAP/LDAPauth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Authenticators/LDAP/LDAPauth.py b/Authenticators/LDAP/LDAPauth.py
index 45bb0c6..7517d89 100644
--- a/Authenticators/LDAP/LDAPauth.py
+++ b/Authenticators/LDAP/LDAPauth.py
@@ -612,7 +612,7 @@ def do_main_program():
debug('nameToId %s -> ?', name)
return FALL_THROUGH
- return result
+ return uid
@fortifyIceFu("")