summaryrefslogtreecommitdiff
path: root/core/apps/embeddedkonsole
Unidiff
Diffstat (limited to 'core/apps/embeddedkonsole') (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/embeddedkonsole/main.cpp9
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[])
35{ 35{
36 setuid(getuid()); setgid(getgid()); // drop privileges 36 if(setuid(getuid()) !=0) qDebug("setuid failed");
37 if(setgid(getgid()) != 0) qDebug("setgid failed"); // drop privileges
37 38
@@ -44,3 +45,3 @@ int main(int argc, char* argv[])
44 qDebug("Fake Ctrl and Alt defined"); 45 qDebug("Fake Ctrl and Alt defined");
45 QPEApplication::grabKeyboard(); // for CTRL and ALT 46// QPEApplication::grabKeyboard(); // for CTRL and ALT
46#endif 47#endif
@@ -56,3 +57,4 @@ int main(int argc, char* argv[])
56 57
57 putenv((char*)"COLORTERM="); // to trigger mc's color detection 58 if( putenv((char*)"COLORTERM=") !=0)
59 qDebug("putenv failed"); // to trigger mc's color detection
58 60
@@ -64 +66,2 @@ int main(int argc, char* argv[])
64} 66}
67