-rw-r--r-- | core/launcher/desktop.cpp | 4 |
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; |