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 @@ -35,3 +35,4 @@ 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 @@ -44,3 +45,3 @@ int main(int argc, char* argv[]) qDebug("Fake Ctrl and Alt defined"); - QPEApplication::grabKeyboard(); // for CTRL and ALT +// QPEApplication::grabKeyboard(); // for CTRL and ALT #endif @@ -56,3 +57,4 @@ int main(int argc, char* argv[]) - putenv((char*)"COLORTERM="); // to trigger mc's color detection + if( putenv((char*)"COLORTERM=") !=0) + qDebug("putenv failed"); // to trigger mc's color detection @@ -64 +66,2 @@ int main(int argc, char* argv[]) } + |