1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-29 01:03:57 +03:00

packet: Fix function name.

This commit is contained in:
Andreas Schneider
2014-03-27 11:26:27 +01:00
parent 53644a14ac
commit b3e6d5df53

View File

@@ -544,7 +544,7 @@ static int packet_send2(ssh_session session) {
if (rc < 0) { if (rc < 0) {
goto error; goto error;
} }
rc = buffer_add_data(session->out_buffer, padstring, padding); rc = ssh_buffer_add_data(session->out_buffer, padstring, padding);
if (rc < 0) { if (rc < 0) {
goto error; goto error;
} }