1
1

Fix small bug in ssh_options_parse_config

Этот коммит содержится в:
Aris Adamantiadis 2009-09-26 12:42:47 +02:00
родитель 2a2616f65c
Коммит c3dc60103f

Просмотреть файл

@ -1332,7 +1332,7 @@ int ssh_options_parse_config(ssh_options opt, const char *filename) {
if (expanded_filename == NULL)
return -1;
r = ssh_config_parse_file(opt, filename);
r = ssh_config_parse_file(opt, expanded_filename);
free(expanded_filename);
return r;
}