From: Yang Tse Date: Sun, 6 Jan 2008 02:02:55 +0000 (+0000) Subject: Increase MaxAuthTries from 0 to 10. Using a value of 0 is too restrictive X-Git-Tag: upstream/7.37.1~8251 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9c6533d28720b38e52827ccd6d2f831553e73442;p=platform%2Fupstream%2Fcurl.git Increase MaxAuthTries from 0 to 10. Using a value of 0 is too restrictive --- diff --git a/tests/sshserver.pl b/tests/sshserver.pl index f651e07..22b83c9 100644 --- a/tests/sshserver.pl +++ b/tests/sshserver.pl @@ -531,8 +531,8 @@ if(sshd_supports_opt('Compression','no')) { if(sshd_supports_opt('KeepAlive','no')) { push @cfgarr, 'KeepAlive no'; } -if(sshd_supports_opt('MaxAuthTries','0')) { - push @cfgarr, 'MaxAuthTries 0'; +if(sshd_supports_opt('MaxAuthTries','10')) { + push @cfgarr, 'MaxAuthTries 10'; } if(sshd_supports_opt('PermitTunnel','no')) { push @cfgarr, 'PermitTunnel no';