diff options
author | Fabiano Fidêncio <fidencio@redhat.com> | 2015-09-17 14:11:08 +0200 |
---|---|---|
committer | Fabiano Fidêncio <fidencio@redhat.com> | 2015-10-12 13:56:21 +0200 |
commit | 8f8dab8d214eea91999cea8153408d8c2d855d12 (patch) | |
tree | 87ba7aafbc4f1f20161d1c3e349d0461a17aa50f /src/session.c | |
parent | 62fe4e426f08e0ba4c40c6b379e792883a4e6ae3 (diff) | |
download | libssh-8f8dab8d214eea91999cea8153408d8c2d855d12.tar.gz libssh-8f8dab8d214eea91999cea8153408d8c2d855d12.tar.xz libssh-8f8dab8d214eea91999cea8153408d8c2d855d12.zip |
cleanup: use ssh_ prefix in the packet (non-static) functions
Having "ssh_" prefix in the functions' name will avoid possible clashes
when compiling libssh statically.
Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
Diffstat (limited to 'src/session.c')
-rw-r--r-- | src/session.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |