summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-06-23 21:03:45 (UTC)
committer llornkcor <llornkcor>2002-06-23 21:03:45 (UTC)
commita4a8c8b51088f47b2c95cbf255e4b63865461c09 (patch) (side-by-side diff)
tree18a46c49cf9f4e7d2a03e10900815703f3cb0410
parent6fd150b4f49cab215eb65730242a7498ea990017 (diff)
downloadopie-a4a8c8b51088f47b2c95cbf255e4b63865461c09.zip
opie-a4a8c8b51088f47b2c95cbf255e4b63865461c09.tar.gz
opie-a4a8c8b51088f47b2c95cbf255e4b63865461c09.tar.bz2
debug startup env
Diffstat (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
@@ -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();
}
+