aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-05-06 13:16:41 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-05-06 13:16:41 +0200
commit27c0ab5ea2949496e4740406c1b3a28ed7706fb5 (patch)
treee99ff8ee83547c46de1845d6b586f70b82c28826
parentf04ac9c8a6e28d1af02c7e590a957bdfcacb51fe (diff)
downloadlibpam-freerdp2-27c0ab5ea2949496e4740406c1b3a28ed7706fb5.tar.gz
libpam-freerdp2-27c0ab5ea2949496e4740406c1b3a28ed7706fb5.tar.bz2
libpam-freerdp2-27c0ab5ea2949496e4740406c1b3a28ed7706fb5.zip
src/pam-x2go.c: Update some comments (2).
-rw-r--r--src/pam-freerdp2.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/pam-freerdp2.c b/src/pam-freerdp2.c
index 00e0e0c..18a4c18 100644
--- a/src/pam-freerdp2.c
+++ b/src/pam-freerdp2.c
@@ -173,13 +173,14 @@ get_item (pam_handle_t * pamh, int type)
char * retval = NULL;
if (promptval != NULL) { /* Can't believe it really would be at this point, but let's be sure */
if ((type == PAM_USER) || (type == PAM_AUTHTOK)) {
- /* We can only use the PAM functions if it's neither server nor domain */
+ /* We can only use the PAM functions for types supported by PAM */
pam_set_item(pamh, type, (const void *)promptval);
/* We're returning the value saved by PAM so we can clear promptval */
pam_get_item(pamh, type, (const void **)&retval);
}
+ /* Here we deal with all RDP specific parameters */
if (type == PAM_TYPE_RDP_USER) {
- /* The user can be saved globally so we can use it for open */
+ /* The remote user can be saved globally */
if (global_rdp_user != NULL) {
free(global_rdp_user);
}
@@ -187,7 +188,7 @@ get_item (pam_handle_t * pamh, int type)
retval = global_rdp_user;
}
if (type == PAM_TYPE_RDP_SERVER) {
- /* The server can be saved globally so we can use it for open */
+ /* The remote server can be saved globally */
if (global_rdp_server != NULL) {
free(global_rdp_server);
}
@@ -195,7 +196,7 @@ get_item (pam_handle_t * pamh, int type)
retval = global_rdp_server;
}
if (type == PAM_TYPE_RDP_DOMAIN) {
- /* The domain can be saved globally so we can use it for open */
+ /* The remote domain can be saved globally */
if (global_rdp_domain != NULL) {
free(global_rdp_domain);
}