From 1161ca8807a68385a2d89bc2e08d6f9d61ad3988 Mon Sep 17 00:00:00 2001 From: Alexey Shilov Date: Wed, 22 Dec 2010 15:45:07 +0200 Subject: [PATCH] Fixes: Bug 214093 - application started with launcher has wrong name in the process list RevBy: Jussi Lind --- src/invoker/invoker.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/invoker/invoker.c b/src/invoker/invoker.c index a05e5d2..880b301 100644 --- a/src/invoker/invoker.c +++ b/src/invoker/invoker.c @@ -661,12 +661,6 @@ int main(int argc, char *argv[]) usage(0); } - char *period = strstr(argv[optind], ".launch"); - if (period) - { - *period = '\0'; - } - prog_argc = argc - optind; prog_argv = &argv[optind]; }