The branch, master has been updated
via 1459c8b3b7b4079b222af372faa10f360d5b23b4 (commit)
from 09b23464dc7aea0221a261eaa8fabb087296eaff (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 1459c8b3b7b4079b222af372faa10f360d5b23b4
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
Date: Fri Nov 9 13:30:19 2012 +0100
fixing syntax errors
-----------------------------------------------------------------------
Summary of changes:
src/x2go-auth-check.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
The diff of changes is:
diff --git a/src/x2go-auth-check.c b/src/x2go-auth-check.c
index 4f30848..8dfc38f 100644
--- a/src/x2go-auth-check.c
+++ b/src/x2go-auth-check.c
@@ -38,8 +38,8 @@ main (int argc, char * argv[])
auth_check_ssh_session = ssh_new();
- ssh_options_set ( auth_check_ssh_session, SSH_OPTIONS_HOST, argv[1]; );
- ssh_options_set ( auth_check_ssh_session, SSH_OPTIONS_USER, argv[2]; );
+ ssh_options_set ( auth_check_ssh_session, SSH_OPTIONS_HOST, argv[1] );
+ ssh_options_set ( auth_check_ssh_session, SSH_OPTIONS_USER, argv[2] );
int rc = ssh_connect (ssh_session);
@@ -49,7 +49,7 @@ main (int argc, char * argv[])
colonloc[0] = '\0';
colonloc++;
- ssh_options_set ( auth_check_ssh_session, SSH_OPTIONS_PORT, strtoul(colonloc, NULL, 10); );
+ ssh_options_set ( auth_check_ssh_session, SSH_OPTIONS_PORT, strtoul(colonloc, NULL, 10) );
}
if (ssh_connect (ssh_session)) {
hooks/post-receive
--
libpam-x2go.git (Remote login session via X2Go (PAM module))
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "libpam-x2go.git" (Remote login session via X2Go (PAM module)).