| Summary: | sshd -T doesn't write all configuration options in valid format | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | Portable OpenSSH | Reporter: | Jakub Jelen <jjelen> | ||||||
| Component: | sshd | Assignee: | Assigned to nobody <unassigned-bugs> | ||||||
| Status: | CLOSED FIXED | ||||||||
| Severity: | enhancement | CC: | dtucker | ||||||
| Priority: | P5 | ||||||||
| Version: | 6.7p1 | ||||||||
| Hardware: | Other | ||||||||
| OS: | Linux | ||||||||
| Bug Depends on: | |||||||||
| Bug Blocks: | 2360 | ||||||||
| Attachments: |
|
||||||||
|
Description
Jakub Jelen
2015-01-30 23:52:11 AEDT
Created attachment 2542 [details]
proposed git patch
Sorry, one more thing to make it complete:
* HostCertificate is written with wrong name: HostKey
Can be resolved adding:
@@ -2185,7 +2185,7 @@ dump_config(ServerOptions *o)
o->authorized_keys_files);
dump_cfg_strarray(sHostKeyFile, o->num_host_key_files,
o->host_key_files);
- dump_cfg_strarray(sHostKeyFile, o->num_host_cert_files,
+ dump_cfg_strarray(sHostCertificate, o->num_host_cert_files,
o->host_cert_files);
dump_cfg_strarray(sAllowUsers, o->num_allow_users, o->allow_users);
dump_cfg_strarray(sDenyUsers, o->num_deny_users, o->deny_users);
Thanks. Committed the UsePAM change to portable and I'm looking at the remainder for OpenBSD now. OK, the remainder of the patch has been applied and will be in the 6.9 release. Thanks! Close all resolved bugs after 7.3p1 release |