X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=sigcheck;h=9c59bd2d37ac392a308070fef9d6517b0de44c2f;hb=4eaa444b9eb4c9d24cd2790f99a690054bf2f806;hp=f3c17f0faeb12b0c132233d949c2205afd0b5b36;hpb=fe67fab54bca15f4820e4f0a911023ed10a743b7;p=mirror%2Fuserdir-ldap.git diff --git a/sigcheck b/sigcheck index f3c17f0..9c59bd2 100755 --- a/sigcheck +++ b/sigcheck @@ -82,7 +82,7 @@ def CheckLDAP(FingerPrint): # See if the group membership is OK # Only if a group was given on the commandline - if GroupMember != None: + if GroupMember is not None: Hit = 0; # Check primary group first if GAttr[0][1]["gid"][0] == GroupMember: @@ -123,7 +123,7 @@ MsgID = None; try: # Startup the replay cache ErrType = EX_TEMPFAIL; - if ReplayCacheFile != None: + if ReplayCacheFile is not None: ErrMsg = "Failed to initialize the replay cache:"; RC = ReplayCache(ReplayCacheFile); @@ -153,15 +153,15 @@ try: raise UDFormatError, "Null signature text" # Check the signature against the replay cache - if ReplayCacheFile != None: + if ReplayCacheFile is not None: RC.process(pgp.sig_info) # Do LDAP stuff - if LDAPDn != None: + if LDAPDn is not None: CheckLDAP(pgp.key_fpr) ErrMsg = "Verifying message:"; - if Phrases != None: + if Phrases is not None: F = open(Phrases,"r"); while 1: Line = F.readline();