aboutsummaryrefslogtreecommitdiff
path: root/libssh/auth.c
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2009-07-21 10:34:21 +0200
committerAndreas Schneider <mail@cynapses.org>2009-07-23 09:06:47 +0200
commit90a6d431a75e9bcec68cd2e7c1a42465238d3faf (patch)
tree69d6c6e3c7e589a067e09e342bbf7006b92a14a5 /libssh/auth.c
parentf7448eeb1ce1cfc0b95766f52af891e90fe9e8e8 (diff)
downloadlibssh-90a6d431a75e9bcec68cd2e7c1a42465238d3faf.tar.gz
libssh-90a6d431a75e9bcec68cd2e7c1a42465238d3faf.tar.xz
libssh-90a6d431a75e9bcec68cd2e7c1a42465238d3faf.zip
Make the ssh_userauth_kbdint functions to get the prompts const.
They shouldn't be modified or free'd by a user.
Diffstat (limited to 'libssh/auth.c')
-rw-r--r--libssh/auth.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libssh/auth.c b/libssh/auth.c
index 752341dd..aadba0ba 100644
--- a/libssh/auth.c
+++ b/libssh/auth.c
@@ -1417,7 +1417,7 @@ int ssh_userauth_kbdint_getnprompts(SSH_SESSION *session) {
*
* @returns The name of the message block. Do not free it.
*/
-char *ssh_userauth_kbdint_getname(SSH_SESSION *session) {
+const char *ssh_userauth_kbdint_getname(SSH_SESSION *session) {
return session->kbdint->name;
}
@@ -1432,7 +1432,7 @@ char *ssh_userauth_kbdint_getname(SSH_SESSION *session) {
* @returns The instruction of the message block.
*/
-char *ssh_userauth_kbdint_getinstruction(SSH_SESSION *session) {
+const char *ssh_userauth_kbdint_getinstruction(SSH_SESSION *session) {
return session->kbdint->instruction;
}
@@ -1452,7 +1452,7 @@ char *ssh_userauth_kbdint_getinstruction(SSH_SESSION *session) {
*
* @returns A pointer to the prompt. Do not free it.
*/
-char *ssh_userauth_kbdint_getprompt(SSH_SESSION *session, unsigned int i,
+const char *ssh_userauth_kbdint_getprompt(SSH_SESSION *session, unsigned int i,
char *echo) {
if (i > session->kbdint->nprompts) {
return NULL;