From 457f39156247ce0b0277500c26057e34de913f08 Mon Sep 17 00:00:00 2001 From: Josh Karlin Date: Wed, 7 Apr 2010 21:19:15 +0000 Subject: [PATCH] Delegation is now per-privilege, instead of one bit per credential --- sfa/trust/credential.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sfa/trust/credential.py b/sfa/trust/credential.py index d533b95f..fa94692e 100644 --- a/sfa/trust/credential.py +++ b/sfa/trust/credential.py @@ -579,8 +579,8 @@ class Credential(object): os.remove(filename) # Verify the parents (delegation) - #if self.parent_xml: - # self.verify_parent(Credential(string=self.parent_xml)) + if self.parent_xml: + self.verify_parent(Credential(string=self.parent_xml)) # Make sure the issuer is the target's authority self.verify_issuer() -- 2.47.0