From 4cfeade24373354bfcbc7110f9da886b9fe2663f Mon Sep 17 00:00:00 2001 From: Simon Josefsson Date: Wed, 10 Mar 2010 13:16:32 +0100 Subject: [PATCH] keepalive.c: Fix libssh2_error usage. --- src/keepalive.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keepalive.c b/src/keepalive.c index 253bab3..1ae479b 100644 --- a/src/keepalive.c +++ b/src/keepalive.c @@ -81,7 +81,7 @@ libssh2_keepalive_send (LIBSSH2_SESSION *session, already full, sending another keepalive is not useful. */ if (rc && rc != PACKET_EAGAIN) { libssh2_error(session, LIBSSH2_ERROR_SOCKET_SEND, - "Unable to send keepalive message", 0); + "Unable to send keepalive message"); return rc; }