-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[]) } + |