aboutsummaryrefslogtreecommitdiff
path: root/x2go-session-wrapper.c
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2016-10-09 01:38:43 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2016-10-09 01:38:43 +0200
commit1ab1c7dafaef78c472b5f67a1fefe450f87e4ccb (patch)
tree8a8faebdd39ee73cfda6544d7303f2aa07c0e42e /x2go-session-wrapper.c
parentae03b1c6969e93f3eba4820e54c7f00b89c1f7ab (diff)
downloadlightdm-remote-session-arctica-1ab1c7dafaef78c472b5f67a1fefe450f87e4ccb.tar.gz
lightdm-remote-session-arctica-1ab1c7dafaef78c472b5f67a1fefe450f87e4ccb.tar.bz2
lightdm-remote-session-arctica-1ab1c7dafaef78c472b5f67a1fefe450f87e4ccb.zip
lightdm-remote-session-arctica: Fork from latest known version of lightdm-remote-session-x2go.
Diffstat (limited to 'x2go-session-wrapper.c')
-rw-r--r--x2go-session-wrapper.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/x2go-session-wrapper.c b/x2go-session-wrapper.c
deleted file mode 100644
index a640e5c..0000000
--- a/x2go-session-wrapper.c
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright © 2012-2013 Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
- * Copyright © 2012 Canonical Ltd.
- *
- * This program is free software: you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 3, as
- * published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranties of
- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
- * PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * 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>
-#include <unistd.h>
-
-int
-main (int argc, char * argv[])
-{
- char * args[2];
- args[0] = PKGDATADIR "/x2go-session";
- args[1] = NULL;
-
- execvp(args[0], args);
-
- return 0;
-}