From 7d20d367e4ce83b73285b4f0be1db0ac71b3425d Mon Sep 17 00:00:00 2001 From: Pieter Lexis Date: Sat, 4 Feb 2012 20:43:16 +0100 Subject: [PATCH] No need to assign when used once --- swede | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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: -- 2.36.1