The branch, master has been updated via f821e53524e7635a39358ca0daadb2951d84a5dd (commit) from 4dfe87335c635ceb63ac1f94d10ddd6ac309d456 (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 f821e53524e7635a39358ca0daadb2951d84a5dd Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sat Nov 10 22:17:06 2012 +0100 fixing copyright headers ----------------------------------------------------------------------- Summary of changes: src/pam-x2go-children.c | 2 ++ src/pam-x2go.c | 2 ++ src/x2go-auth-check.c | 2 ++ tests/mock_guest.c | 4 +++- tests/mock_guest.h | 4 +++- tests/mock_pam.c | 4 +++- tests/mock_pam.h | 4 +++- tests/test-x2go-auth.c | 2 ++ tests/test-x2go-wrapper.cc | 4 +++- 9 files changed, 23 insertions(+), 5 deletions(-) The diff of changes is: diff --git a/src/pam-x2go-children.c b/src/pam-x2go-children.c index 2b27ba6..e161ca3 100644 --- a/src/pam-x2go-children.c +++ b/src/pam-x2go-children.c @@ -1,4 +1,5 @@ /* + * Copyright © 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de> * Copyright © 2012 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify it @@ -14,6 +15,7 @@ * with this program. If not, see <http://www.gnu.org/licenses/>. * * Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> + * Author libpam-freerdp (where we forked from): Ted Gould <ted@canonical.com> */ #include <stdlib.h> diff --git a/src/pam-x2go.c b/src/pam-x2go.c index 49350f9..4744e2b 100644 --- a/src/pam-x2go.c +++ b/src/pam-x2go.c @@ -1,4 +1,5 @@ /* + * Copyright © 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de> * Copyright © 2012 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify it @@ -14,6 +15,7 @@ * with this program. If not, see <http://www.gnu.org/licenses/>. * * Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> + * Author libpam-freerdp (where we forked from): Ted Gould <ted@canonical.com> */ #include <stdlib.h> diff --git a/src/x2go-auth-check.c b/src/x2go-auth-check.c index 7370dec..2306139 100644 --- a/src/x2go-auth-check.c +++ b/src/x2go-auth-check.c @@ -1,4 +1,5 @@ /* + * Copyright © 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de> * Copyright © 2012 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify it @@ -14,6 +15,7 @@ * with this program. If not, see <http://www.gnu.org/licenses/>. * * Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> + * Author libpam-freerdp (where we forked from): Ted Gould <ted@canonical.com> */ #include <libssh/libssh.h> diff --git a/tests/mock_guest.c b/tests/mock_guest.c index 3327da0..fab61e2 100644 --- a/tests/mock_guest.c +++ b/tests/mock_guest.c @@ -1,7 +1,9 @@ /* + * Copyright © 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de>. * Copyright © 2012 Canonical Ltd. All rights reserved. * - * Author(s): David Barth <david.barth@canonical.com> + * Author(s): Mike Gabriel <mike.gabriel@das-netzwerkteam.de> + * David Barth <david.barth@canonical.com> * */ diff --git a/tests/mock_guest.h b/tests/mock_guest.h index 2c17536..8257d30 100644 --- a/tests/mock_guest.h +++ b/tests/mock_guest.h @@ -1,7 +1,9 @@ /* + * Copyright © 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de>. * Copyright © 2012 Canonical Ltd. All rights reserved. * - * Author(s): David Barth <david.barth@canonical.com> + * Author(s): Mike Gabriel <mike.gabriel@das-netzwerkteam.de> + * David Barth <david.barth@canonical.com> * */ diff --git a/tests/mock_pam.c b/tests/mock_pam.c index 6368b84..2da9963 100644 --- a/tests/mock_pam.c +++ b/tests/mock_pam.c @@ -1,7 +1,9 @@ /* + * Copyright © 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de>. * Copyright © 2012 Canonical Ltd. All rights reserved. * - * Author(s): David Barth <david.barth@canonical.com> + * Author(s): Mike Gabriel <mike.gabriel@das-netzwerkteam.de> + * David Barth <david.barth@canonical.com> * */ diff --git a/tests/mock_pam.h b/tests/mock_pam.h index eb88a2e..9bdd74d 100644 --- a/tests/mock_pam.h +++ b/tests/mock_pam.h @@ -1,7 +1,9 @@ /* + * Copyright © 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de>. * Copyright © 2012 Canonical Ltd. All rights reserved. * - * Author(s): David Barth <david.barth@canonical.com> + * Author(s): Mike Gabriel <mike.gabriel@das-netzwerkteam.de> + * David Barth <david.barth@canonical.com> * */ diff --git a/tests/test-x2go-auth.c b/tests/test-x2go-auth.c index cdb8a31..1753f9b 100644 --- a/tests/test-x2go-auth.c +++ b/tests/test-x2go-auth.c @@ -1,4 +1,5 @@ /* + * Copyright © 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de> * Copyright © 2012 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify it @@ -14,6 +15,7 @@ * with this program. If not, see <http://www.gnu.org/licenses/>. * * Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> + * Author libpam-freerdp (where we forked from): Ted Gould <ted@canonical.com> */ #include <stdlib.h> diff --git a/tests/test-x2go-wrapper.cc b/tests/test-x2go-wrapper.cc index 67aca58..24e49c0 100644 --- a/tests/test-x2go-wrapper.cc +++ b/tests/test-x2go-wrapper.cc @@ -1,7 +1,9 @@ /* + * Copyright © 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de>. * Copyright © 2012 Canonical Ltd. All rights reserved. * - * Author(s): David Barth <david.barth@canonical.com> + * Author(s): Mike Gabriel <mike.gabriel@das-netzwerkteam.de> + * David Barth <david.barth@canonical.com> * */ 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)).