Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Martin Prikryl points out that need_pw may be used uninitialised. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
e13b2bf694733f68b1bfa969936628b2 |
| User & Date: | simon 2004-01-21 13:33:48.000 |
Context
|
2004-01-21
| ||
| 13:41 | Two small memory leaks, also noticed by Martin Prikryl. check-in: 086da3a301 user: simon tags: trunk | |
| 13:33 | Martin Prikryl points out that need_pw may be used uninitialised. check-in: e13b2bf694 user: simon tags: trunk | |
| 11:11 | `What is PuTTY?' gets asked _just_ frequently enough to have finally annoyed me. check-in: 6ded91a6e0 user: simon tags: trunk | |
Changes
Changes to ssh.c.
| ︙ | ︙ | |||
4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 |
in_commasep_string("password", methods, methlen);
s->can_keyb_inter = ssh->cfg.try_ki_auth &&
in_commasep_string("keyboard-interactive", methods, methlen);
}
s->method = 0;
ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
/*
* Most password/passphrase prompts will be
* non-echoing, so we set this to 0 by default.
* Exception is that some keyboard-interactive prompts
* can be echoing, in which case we'll set this to 1.
*/
| > | 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 |
in_commasep_string("password", methods, methlen);
s->can_keyb_inter = ssh->cfg.try_ki_auth &&
in_commasep_string("keyboard-interactive", methods, methlen);
}
s->method = 0;
ssh->pkt_ctx &= ~SSH2_PKTCTX_AUTH_MASK;
s->need_pw = FALSE;
/*
* Most password/passphrase prompts will be
* non-echoing, so we set this to 0 by default.
* Exception is that some keyboard-interactive prompts
* can be echoing, in which case we'll set this to 1.
*/
|
| ︙ | ︙ |