# 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: