author | llornkcor <llornkcor> | 2002-06-23 21:03:45 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-06-23 21:03:45 (UTC) |
commit | a4a8c8b51088f47b2c95cbf255e4b63865461c09 (patch) (side-by-side diff) | |
tree | 18a46c49cf9f4e7d2a03e10900815703f3cb0410 | |
parent | 6fd150b4f49cab215eb65730242a7498ea990017 (diff) | |
download | opie-a4a8c8b51088f47b2c95cbf255e4b63865461c09.zip opie-a4a8c8b51088f47b2c95cbf255e4b63865461c09.tar.gz opie-a4a8c8b51088f47b2c95cbf255e4b63865461c09.tar.bz2 |
debug startup env
-rw-r--r-- | core/apps/embeddedkonsole/main.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
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 @@ -24,41 +24,44 @@ #include <qpe/qpeapplication.h> #include <qfile.h> #include <unistd.h> #include <stdio.h> #include <stdlib.h> /* --| 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 ); QPEApplication::grabKeyboard(); // for CTRL and ALT 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; const char* shell = getenv("SHELL"); if (shell == NULL || *shell == '\0') shell = "/bin/sh"; // sh is completely broken on familiar. Let's try to get something better 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") ); a.showMainWidget( &m ); return a.exec(); } + |