summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sample.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sample.c b/sample.c
index f028ceb..dade687 100644
--- a/sample.c
+++ b/sample.c
@@ -521,13 +521,13 @@ int main(int argc, char **argv){
signal(SIGTERM, do_exit);
if (user) {
- if (ssh_options_set_username(options,user) < 0) {
+ if (ssh_options_set(options, SSH_OPTIONS_USER, user) < 0) {
ssh_options_free(options);
return 1;
}
}
- if (ssh_options_set_host(options,host) < 0) {
+ if (ssh_options_set(options, SSH_OPTIONS_HOST ,host) < 0) {
ssh_options_free(options);
return 1;
}