From b2bcfc0f277c369bcf9eecfaa7fea648b6caa80d Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Thu, 3 May 2018 10:26:35 +0200 Subject: src/pam-x2go.c: Adapt some comments. --- src/pam-x2go.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') 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); } -- cgit v1.2.3