aboutsummaryrefslogtreecommitdiff
path: root/tests/mock_pam.c
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-05-03 10:27:10 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-05-03 10:27:10 +0200
commitfae5b91f36e94c6959fb72130d5d4de5f9669e30 (patch)
tree3853fdfa45ca22f50bfe01f9069c2c5968e329d4 /tests/mock_pam.c
parentb2bcfc0f277c369bcf9eecfaa7fea648b6caa80d (diff)
downloadlibpam-x2go-fae5b91f36e94c6959fb72130d5d4de5f9669e30.tar.gz
libpam-x2go-fae5b91f36e94c6959fb72130d5d4de5f9669e30.tar.bz2
libpam-x2go-fae5b91f36e94c6959fb72130d5d4de5f9669e30.zip
PAM prompt: rename from "x2gosession" to "remote command".
Diffstat (limited to 'tests/mock_pam.c')
-rw-r--r--tests/mock_pam.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mock_pam.c b/tests/mock_pam.c
index 64c503f..a07c9af 100644
--- a/tests/mock_pam.c
+++ b/tests/mock_pam.c
@@ -39,8 +39,8 @@ int fake_conv (int num_msg, const struct pam_message **msg,
response->resp = strdup ("protocol://rhost/dummy");
else if (strcmp((*msg)->msg, "password:") == 0)
response->resp = strdup ("password");
- else if (strcmp((*msg)->msg, "sessiontype:") == 0)
- response->resp = strdup ("sessiontype");
+ else if (strcmp((*msg)->msg, "remote command:") == 0)
+ response->resp = strdup ("rcommand");
else
return PAM_SYMBOL_ERR; /* leaks... */