-rw-r--r-- | core/launcher/desktop.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/launcher/desktop.cpp b/core/launcher/desktop.cpp index 5ecc8bf..ba4fd66 100644 --- a/core/launcher/desktop.cpp +++ b/core/launcher/desktop.cpp @@ -742,3 +742,2 @@ void DesktopApplication::shutdown( ShutdownImpl::Type t ) { - char *path[] = { "/sbin", "/usr/sbin", 0 }; char *opt = 0; @@ -753,4 +752,5 @@ void DesktopApplication::shutdown( ShutdownImpl::Type t ) - if ( execle( "shutdown", "shutdown", opt, "now", ( void* ) 0, path ) < 0 ) - ::syslog ( LOG_ERR, "Erroring execing shutdown\n" ); + if ( execl( "/sbin/shutdown", "shutdown", opt, "now", ( void* ) 0) < 0 ) + perror("shutdown"); +// ::syslog ( LOG_ERR, "Erroring execing shutdown\n" ); |