From cf9c48086438f14ea628b0c06430f818c7712dc0 Mon Sep 17 00:00:00 2001 From: "Casper Ti. Vector" Date: Wed, 22 May 2013 00:57:06 +0800 Subject: [PATCH] cdm-xlaunch: fix typo introduced in commit 3c8e2bab. --- src/cdm-xlaunch | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cdm-xlaunch b/src/cdm-xlaunch index 3d79cfd..e18d5de 100755 --- a/src/cdm-xlaunch +++ b/src/cdm-xlaunch @@ -82,8 +82,7 @@ fi if $altstartx; then # Alternative method of calling setsid(/startx) for systems that are unresponsive to the 'normal' call. - # This method should be avoided because this implementation keeps extra background processes, waiting for startx to return. - $(setsid startx "$@" > /dev/null 2>&1) & + (setsid startx "$@" > /dev/null 2>&1) & else setsid startx "$@" > /dev/null 2>&1 & fi