Fix typos
authorJulien Cristau <jcristau@debian.org>
Sun, 10 Feb 2019 11:11:01 +0000 (12:11 +0100)
committerJulien Cristau <jcristau@debian.org>
Sun, 10 Feb 2019 11:11:01 +0000 (12:11 +0100)
l was renamed to lc in most places.

ud-mailgate

index 5ec68d2..b40be70 100755 (executable)
@@ -484,7 +484,7 @@ def DoConfirmSudopassword(Str, SudoPasswd):
     return "got confirm for sudo password %s on host(s) %s, auth code %s" % (uuid, hosts, hmac)
 
 
-def FinishConfirmSudopassword(l, uid, Attrs, SudoPasswd):
+def FinishConfirmSudopassword(lc, uid, Attrs, SudoPasswd):
     result = "\n"
 
     if len(SudoPasswd) == 0:
@@ -599,7 +599,7 @@ def HandleChange(Reply, DnRecord, Key):
 
     if CommitChanges == 1 and len(SudoPasswd) > 0:  # only if we are still good to go
         try:
-            Res = FinishConfirmSudopassword(l, GetAttr(DnRecord, "uid"), Attrs, SudoPasswd)
+            Res = FinishConfirmSudopassword(lc, GetAttr(DnRecord, "uid"), Attrs, SudoPasswd)
             if Res is not None:
                 Result += Res + "\n"
         except Error, e: