diff options
-rw-r--r-- | paramiko/auth_handler.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/paramiko/auth_handler.py b/paramiko/auth_handler.py index 81a7946d..ee5fb174 100644 --- a/paramiko/auth_handler.py +++ b/paramiko/auth_handler.py @@ -241,6 +241,9 @@ class AuthHandler (object): # send the supported GSSAPI OIDs to the server self.transport._send_message(m) ptype, m = self.transport.packetizer.read_message() + if ptype == MSG_USERAUTH_BANNER: + self._parse_userauth_banner(m) + ptype, m = self.transport.packetizer.read_message() if ptype == MSG_USERAUTH_GSSAPI_RESPONSE: """ Read the mechanism selected by the server. |