From a4a8c8b51088f47b2c95cbf255e4b63865461c09 Mon Sep 17 00:00:00 2001 From: llornkcor Date: Sun, 23 Jun 2002 21:03:45 +0000 Subject: debug startup env --- diff --git a/core/apps/embeddedkonsole/main.cpp b/core/apps/embeddedkonsole/main.cpp index 3ebe4c7..95adab8 100644 --- a/core/apps/embeddedkonsole/main.cpp +++ b/core/apps/embeddedkonsole/main.cpp @@ -33,7 +33,8 @@ /* --| main |------------------------------------------------------ */ int main(int argc, char* argv[]) { - setuid(getuid()); setgid(getgid()); // drop privileges + if(setuid(getuid()) !=0) qDebug("setuid failed"); + if(setgid(getgid()) != 0) qDebug("setgid failed"); // drop privileges QPEApplication a( argc, argv ); @@ -42,7 +43,7 @@ int main(int argc, char* argv[]) qDebug("keyboard grabbed"); #ifdef FAKE_CTRL_AND_ALT qDebug("Fake Ctrl and Alt defined"); - QPEApplication::grabKeyboard(); // for CTRL and ALT +// QPEApplication::grabKeyboard(); // for CTRL and ALT #endif QStrList tmp; @@ -54,7 +55,8 @@ int main(int argc, char* argv[]) if ( qstrcmp( shell, "/bin/shell" ) == 0 && QFile::exists( "/bin/bash" ) ) shell = "/bin/bash"; - putenv((char*)"COLORTERM="); // to trigger mc's color detection + if( putenv((char*)"COLORTERM=") !=0) + qDebug("putenv failed"); // to trigger mc's color detection Konsole m( "test", shell, tmp, TRUE ); m.setCaption( Konsole::tr("Terminal") ); @@ -62,3 +64,4 @@ int main(int argc, char* argv[]) return a.exec(); } + -- cgit v0.9.0.2