diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-05-03 10:26:35 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-05-03 10:26:35 +0200 |
commit | b2bcfc0f277c369bcf9eecfaa7fea648b6caa80d (patch) | |
tree | 94de6bcb85251103df2c23219eaa1f1db0818e6e | |
parent | b42a3b9fe6b9530201eb4a6e3eddafe649918ac1 (diff) | |
download | libpam-x2go-b2bcfc0f277c369bcf9eecfaa7fea648b6caa80d.tar.gz libpam-x2go-b2bcfc0f277c369bcf9eecfaa7fea648b6caa80d.tar.bz2 libpam-x2go-b2bcfc0f277c369bcf9eecfaa7fea648b6caa80d.zip |
src/pam-x2go.c: Adapt some comments.
-rw-r--r-- | src/pam-x2go.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pam-x2go.c b/src/pam-x2go.c index 53d937a..552cb3c 100644 --- a/src/pam-x2go.c +++ b/src/pam-x2go.c @@ -162,7 +162,7 @@ get_item (pam_handle_t * pamh, int type) pam_get_item(pamh, type, (const void **)&retval); } if (type == PAM_TYPE_X2GO_USER) { - /* The server can be saved globally */ + /* The remote user can be saved globally */ if (global_x2go_user != NULL) { free(global_x2go_user); } @@ -170,7 +170,7 @@ get_item (pam_handle_t * pamh, int type) retval = global_x2go_user; } if (type == PAM_TYPE_X2GO_SERVER) { - /* The server can be saved globally */ + /* The remote server can be saved globally */ if (global_x2go_server != NULL) { free(global_x2go_server); } @@ -178,7 +178,7 @@ get_item (pam_handle_t * pamh, int type) retval = global_x2go_server; } if (type == PAM_TYPE_X2GO_COMMAND) { - /* The session type can be saved globally so we can use it for open */ + /* The remote command can be saved globally */ if (global_x2go_command != NULL) { free(global_x2go_command); } |