From 49e875c7e14b95697e3d0c7502d8457d3ce6378c Mon Sep 17 00:00:00 2001 From: Mark Huang Date: Thu, 1 Feb 2007 22:28:48 +0000 Subject: [PATCH] - changed gpg_verify() calling convention --- PLC/Auth.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PLC/Auth.py b/PLC/Auth.py index f71b634..c21ec8c 100644 --- a/PLC/Auth.py +++ b/PLC/Auth.py @@ -4,7 +4,7 @@ # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # -# $Id: Auth.py,v 1.13 2007/01/30 23:09:55 mlhuang Exp $ +# $Id: Auth.py,v 1.14 2007/01/31 22:41:00 mlhuang Exp $ # import crypt @@ -92,7 +92,7 @@ class GPGAuth(Auth): for key in keys: try: from PLC.GPG import gpg_verify - gpg_verify(method.name, args, auth['signature'], key) + gpg_verify(args, key, auth['signature'], method.name) return except PLCAuthenticationFailure, fault: pass -- 2.43.0