From 33c41074a794e5d264ebf9e3ee88ea99455f682d Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 23 Dec 2010 08:54:39 +0100 Subject: libsshpp: Fixed return of non-void function. --- include/libssh/libsshpp.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/libssh/libsshpp.hpp b/include/libssh/libsshpp.hpp index 880c4921..ab156c67 100644 --- a/include/libssh/libsshpp.hpp +++ b/include/libssh/libsshpp.hpp @@ -350,7 +350,9 @@ public: * @see ssh_write_knownhost */ int writeKnownhost(){ - ssh_throw(ssh_write_knownhost(c_session)); + int ret = ssh_write_knownhost(c_session); + ssh_throw(ret); + return ret; } /** @brief accept an incoming forward connection @@ -528,6 +530,7 @@ public: int err=ssh_channel_request_x11(channel,single_connection, protocol, cookie, screen_number); ssh_throw(err); + return err; } void_throwable sendEof(){ int err=ssh_channel_send_eof(channel); -- cgit v1.2.3