summaryrefslogtreecommitdiff
path: root/core/launcher
authorkergoth <kergoth>2003-03-14 19:35:48 (UTC)
committer kergoth <kergoth>2003-03-14 19:35:48 (UTC)
commit2d20b81186bd9a4795af736710d0cb205ead9a77 (patch) (side-by-side diff)
treebc0560151016cccc0a6c4234d7af3e33eaac63c8 /core/launcher
parent4f483f13e3c624a0ce6161e6ddd6923b4d101f0e (diff)
downloadopie-2d20b81186bd9a4795af736710d0cb205ead9a77.zip
opie-2d20b81186bd9a4795af736710d0cb205ead9a77.tar.gz
opie-2d20b81186bd9a4795af736710d0cb205ead9a77.tar.bz2
Syntax correction
Diffstat (limited to 'core/launcher') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/desktop.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/launcher/desktop.cpp b/core/launcher/desktop.cpp
index 4c239a6..5ecc8bf 100644
--- a/core/launcher/desktop.cpp
+++ b/core/launcher/desktop.cpp
@@ -740,7 +740,7 @@ void DesktopApplication::shutdown()
void DesktopApplication::shutdown( ShutdownImpl::Type t )
{
-
+ char *path[] = { "/sbin", "/usr/sbin", 0 };
char *opt = 0;
switch ( t ) {
@@ -751,7 +751,7 @@ void DesktopApplication::shutdown( ShutdownImpl::Type t )
if ( opt == 0 )
opt = "-r";
- if ( execle( "shutdown", "shutdown", opt, "now", ( void* ) 0, "/sbin", "/usr/sbin", ( void* ) 0 ) < 0 )
+ if ( execle( "shutdown", "shutdown", opt, "now", ( void* ) 0, path ) < 0 )
::syslog ( LOG_ERR, "Erroring execing shutdown\n" );
break;