| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | | - |
| 5 | | - |
| 6 | | - |
| 7 | | - |
| 8 | | - |
| 9 | | - |
| 10 | | - |
| 11 | | - |
| 12 | | - |
| 13 | extern ServerOptions options; | - |
| 14 | | - |
| 15 | | - |
| 16 | static int none_enabled = 1; | - |
| 17 | | - |
| 18 | static int | - |
| 19 | userauth_none(struct ssh *ssh) | - |
| 20 | { | - |
| 21 | int r; | - |
| 22 | | - |
| 23 | none_enabled = 0; | - |
| 24 | if ((| TRUE | never evaluated | | FALSE | never evaluated |
r = sshpkt_get_end(ssh)) != 0| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 25 | fatal("%s: %s", __func__, ssh_err(r)); never executed: fatal("%s: %s", __func__, ssh_err(r)); | 0 |
| 26 | if (options.permit_empty_passwd| TRUE | never evaluated | | FALSE | never evaluated |
&& options.password_authentication| TRUE | never evaluated | | FALSE | never evaluated |
) | 0 |
| 27 | return never executed: return ((use_privsep ? mm_auth_password(ssh, "") : auth_password(ssh, ""))); ((use_privsep| TRUE | never evaluated | | FALSE | never evaluated |
? mm_auth_password(ssh, "") : auth_password(ssh, "")));never executed: return ((use_privsep ? mm_auth_password(ssh, "") : auth_password(ssh, ""))); | 0 |
| 28 | return never executed: return (0); (0);never executed: return (0); | 0 |
| 29 | } | - |
| 30 | | - |
| 31 | Authmethod method_none = { | - |
| 32 | "none", | - |
| 33 | userauth_none, | - |
| 34 | &none_enabled | - |
| 35 | }; | - |
| | |