mirror of
https://github.com/wez/wezterm.git
synced 2024-11-22 13:16:39 +03:00
fix system ssh config path
This commit is contained in:
parent
a594298947
commit
494fa999bb
@ -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
|
||||
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user