diff options
author | Andreas Schneider <mail@cynapses.org> | 2009-04-02 12:35:13 +0000 |
---|---|---|
committer | Andreas Schneider <mail@cynapses.org> | 2009-04-02 12:35:13 +0000 |
commit | 94e91b73f78218c586111c60c3df30bb82741c7a (patch) | |
tree | 2a9007f7085fdd75184d11f380e9a5ba8a5ed273 | |
parent | 115450ac9bba5edcb2a9d57f01054c7e997fe61c (diff) | |
download | libssh-94e91b73f78218c586111c60c3df30bb82741c7a.tar.gz libssh-94e91b73f78218c586111c60c3df30bb82741c7a.tar.xz libssh-94e91b73f78218c586111c60c3df30bb82741c7a.zip |
Fix typo.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@365 7dcaeef0-15fb-0310-b436-a5af3365683c
-rw-r--r-- | libssh/options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh/options.c b/libssh/options.c index 404ccee..6e44db0 100644 --- a/libssh/options.c +++ b/libssh/options.c @@ -656,7 +656,7 @@ int ssh_options_set_status_callback(SSH_OPTIONS *opt, * complete exchange. */ int ssh_options_set_timeout(SSH_OPTIONS *opt, long seconds, long usec) { - if (opts == NULL) { + if (opt == NULL) { return -1; } |