From 8f8dab8d214eea91999cea8153408d8c2d855d12 Mon Sep 17 00:00:00 2001 From: Fabiano FidĂȘncio Date: Thu, 17 Sep 2015 14:11:08 +0200 Subject: cleanup: use ssh_ prefix in the packet (non-static) functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Having "ssh_" prefix in the functions' name will avoid possible clashes when compiling libssh statically. Signed-off-by: Fabiano FidĂȘncio --- src/session.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/session.c') diff --git a/src/session.c b/src/session.c index c1ef2909..a61af44b 100644 --- a/src/session.c +++ b/src/session.c @@ -828,7 +828,7 @@ int ssh_send_ignore (ssh_session session, const char *data) { ssh_set_error_oom(session); goto error; } - packet_send(session); + ssh_packet_send(session); ssh_handle_packets(session, 0); } @@ -864,7 +864,7 @@ int ssh_send_debug (ssh_session session, const char *message, int always_display ssh_set_error_oom(session); goto error; } - packet_send(session); + ssh_packet_send(session); ssh_handle_packets(session, 0); } -- cgit