From c3dc60103f03142873bdb78d112adbe423c94c2e Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Sat, 26 Sep 2009 12:42:47 +0200 Subject: Fix small bug in ssh_options_parse_config --- libssh/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libssh/options.c') diff --git a/libssh/options.c b/libssh/options.c index 3c20126..70469d8 100644 --- a/libssh/options.c +++ b/libssh/options.c @@ -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; } -- cgit