aboutsummaryrefslogtreecommitdiff
path: root/freerdp-session-wrapper.c
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-12-07 09:24:37 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-12-07 09:24:37 +0100
commit349c023757d351d9e59b93bcfad7d06874c7d2ec (patch)
tree400d8dee168339b8668e2390211673a74397b98b /freerdp-session-wrapper.c
parentc8cbafbcd7e4ff27f776631e8bcd97031fc8c10e (diff)
downloadlightdm-remote-session-freerdp2-349c023757d351d9e59b93bcfad7d06874c7d2ec.tar.gz
lightdm-remote-session-freerdp2-349c023757d351d9e59b93bcfad7d06874c7d2ec.tar.bz2
lightdm-remote-session-freerdp2-349c023757d351d9e59b93bcfad7d06874c7d2ec.zip
Continue project under name lightdm-remote-session-freerdp2.
Diffstat (limited to 'freerdp-session-wrapper.c')
-rw-r--r--freerdp-session-wrapper.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/freerdp-session-wrapper.c b/freerdp-session-wrapper.c
deleted file mode 100644
index 8c31fab..0000000
--- a/freerdp-session-wrapper.c
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * 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: Ted Gould <ted@canonical.com>
- */
-
-#include <stdlib.h>
-#include <unistd.h>
-
-int
-main (int argc, char * argv[])
-{
- char * args[2];
- args[0] = PKGDATADIR "/freerdp-session";
- args[1] = NULL;
-
- execvp(args[0], args);
-
- return 0;
-}