aboutsummaryrefslogtreecommitdiff
path: root/arctica-session-wrapper.c
diff options
context:
space:
mode:
Diffstat (limited to 'arctica-session-wrapper.c')
-rw-r--r--arctica-session-wrapper.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/arctica-session-wrapper.c b/arctica-session-wrapper.c
new file mode 100644
index 0000000..ef4687e
--- /dev/null
+++ b/arctica-session-wrapper.c
@@ -0,0 +1,34 @@
+/*
+ * Copyright © 2012-2016 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 "/arctica-session";
+ args[1] = NULL;
+
+ execvp(args[0], args);
+
+ return 0;
+}