mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 09:19:23 +01:00
p10: warn when receiving an invalid subcommand with use_extended_accounts=true
This commit is contained in:
parent
a8f0bd4fb7
commit
475349dc39
@ -1279,6 +1279,10 @@ class P10Protocol(IRCS2SProtocol):
|
|||||||
accountname = args[2]
|
accountname = args[2]
|
||||||
elif args[1] == 'U':
|
elif args[1] == 'U':
|
||||||
accountname = '' # logout
|
accountname = '' # logout
|
||||||
|
elif len(args[1]) > 1:
|
||||||
|
log.warning('(%s) Got subcommand %r for %s in ACCOUNT message, is use_extended_accounts set correctly?',
|
||||||
|
self.name, args[1], target)
|
||||||
|
return
|
||||||
else:
|
else:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user