From b396c574a0c3373d3b807e5ea629670cf7cc6150 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Thu, 8 Nov 2012 22:27:01 +0100 Subject: fork lightdm-remote-session-freerdp as lightdm-remote-session-x2go --- x2go-session-wrapper.c | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 x2go-session-wrapper.c (limited to 'x2go-session-wrapper.c') diff --git a/x2go-session-wrapper.c b/x2go-session-wrapper.c new file mode 100644 index 0000000..d6bc9a9 --- /dev/null +++ b/x2go-session-wrapper.c @@ -0,0 +1,32 @@ +/* + * 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 . + * + * Author: Ted Gould + */ + +#include +#include + +int +main (int argc, char * argv[]) +{ + char * args[2]; + args[0] = PKGDATADIR "/x2go-session"; + args[1] = NULL; + + execvp(args[0], args); + + return 0; +} -- cgit v1.2.3