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

src: Do not use deprecated functions.

This commit is contained in:
Andreas Schneider
2014-01-16 15:27:46 +01:00
parent a7157b7907
commit 2fe59071b2
9 changed files with 35 additions and 35 deletions

View File

@@ -1690,8 +1690,8 @@ static int ssh_userauth_kbdint_send(ssh_session session)
}
rc = buffer_add_ssh_string(session->out_buffer, answer);
string_burn(answer);
string_free(answer);
ssh_string_burn(answer);
ssh_string_free(answer);
if (rc < 0) {
goto fail;
}