From 1499c1f511dbfef803eae069dcf6c1a056a130bb Mon Sep 17 00:00:00 2001 From: joey <> Date: Sat, 6 Nov 2004 15:11:32 +0000 Subject: [PATCH] Update from samosa: Only use SSH2AuthSplit.match(), maybe it's superior? --- ud-mailgate | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ud-mailgate b/ud-mailgate index ede45ac..ebb5d45 100755 --- a/ud-mailgate +++ b/ud-mailgate @@ -161,11 +161,9 @@ def DoPosition(Str,Attrs): # Handle an SSH authentication key, the line format is: # [options] 1024 35 13188913666680[..] [comment] def DoSSH(Str,Attrs): - Match = SSHAuthSplit.match(Str); + Match = SSH2AuthSplit.match(Str); if Match == None: - Match = SSH2AuthSplit.match(Str); - if Match == None: - return None; + return None; global SeenKey; if SeenKey: -- 2.20.1