1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-22 22:42:48 +03:00

fix system ssh config path

This commit is contained in:
Wez Furlong 2021-05-03 19:54:09 -07:00
parent a594298947
commit 494fa999bb
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ usually the best available version.
As features stabilize some brief notes about them will accumulate here.
* Not yet
* Fixed: ssh client would read `/etc/ssh/config` rather than the proper `/etc/ssh/ssh_config`
### 20210502-154244-3f7122cb

View File

@ -354,7 +354,7 @@ impl Config {
if let Some(home) = dirs_next::home_dir() {
self.add_config_file(home.join(".ssh").join("config"));
}
self.add_config_file("/etc/ssh/config");
self.add_config_file("/etc/ssh/ssh_config");
}
fn resolve_local_user(&self) -> String {