From: Pieter Lexis <pieter@plexis.eu>
Date: Sat, 4 Feb 2012 19:43:16 +0000 (+0100)
Subject: No need to assign when used once
X-Git-Url: https://git.svenne.dk/?a=commitdiff_plain;h=7d20d367e4ce83b73285b4f0be1db0ac71b3425d;p=public%2Fdnssec-swede-utility.git

No need to assign when used once
---

diff --git a/swede b/swede
index 036071a..02ebd16 100755
--- a/swede
+++ b/swede
@@ -466,8 +466,7 @@ if __name__ == '__main__':
 
 				# Good, now let's verify
 				if record.usage == 1: # End-host cert
-					cert = chain[0]
-					if verifyCertMatch(record, cert):
+					if verifyCertMatch(record, chain[0]):
 						if verify_result == 0: # The cert chains to a valid CA cert according to the system-certificates
 							print 'SUCCESS (Usage 1): Certificate offered by the server matches the one mentioned in the TLSA record and chains to a valid CA certificate'
 						else: