View | Details | Raw Unified | Return to bug 2768
Collapse All | Expand All

(-)a/sshconnect2.c (-3 / +2 lines)
Lines 895-901 int Link Here
895
userauth_passwd(Authctxt *authctxt)
895
userauth_passwd(Authctxt *authctxt)
896
{
896
{
897
	static int attempt = 0;
897
	static int attempt = 0;
898
	char prompt[150];
898
	char prompt[173];
899
	char *password;
899
	char *password;
900
	const char *host = options.host_key_alias ?  options.host_key_alias :
900
	const char *host = options.host_key_alias ?  options.host_key_alias :
901
	    authctxt->host;
901
	    authctxt->host;
Lines 935-941 input_userauth_passwd_changereq(int type, u_int32_t seqnr, struct ssh *ssh) Link Here
935
{
935
{
936
	Authctxt *authctxt = ssh->authctxt;
936
	Authctxt *authctxt = ssh->authctxt;
937
	char *info, *lang, *password = NULL, *retype = NULL;
937
	char *info, *lang, *password = NULL, *retype = NULL;
938
	char prompt[150];
938
	char prompt[184];
939
	const char *host;
939
	const char *host;
940
940
941
	debug2("input_userauth_passwd_changereq");
941
	debug2("input_userauth_passwd_changereq");
942
- 

Return to bug 2768