1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-15 01:57:40 -05:00

Add an option to disable SSH-2 banners.

[originally from svn r9055]
This commit is contained in:
Jacob Nevins
2010-12-27 01:19:13 +00:00
parent 526aff23b6
commit af1060856e
6 changed files with 27 additions and 2 deletions

View File

@ -2088,6 +2088,10 @@ void setup_config_box(struct controlbox *b, int midsession,
HELPCTX(ssh_auth_bypass),
dlg_stdcheckbox_handler,
I(offsetof(Config,ssh_no_userauth)));
ctrl_checkbox(s, "Display pre-authentication banner (SSH-2 only)",
'd', HELPCTX(ssh_auth_banner),
dlg_stdcheckbox_handler,
I(offsetof(Config,ssh_show_banner)));
s = ctrl_getset(b, "Connection/SSH/Auth", "methods",
"Authentication methods");