summaryrefslogtreecommitdiff
path: root/core/apps/embeddedkonsole/main.cpp
authorllornkcor <llornkcor>2002-04-28 23:08:31 (UTC)
committer llornkcor <llornkcor>2002-04-28 23:08:31 (UTC)
commit3a7ed24bd010b3313b2260a35c68cfc3b49125b2 (patch) (side-by-side diff)
tree1e478a7ab2bf05539d6f570db771ccab4d06da81 /core/apps/embeddedkonsole/main.cpp
parent28d8806d21ec8fbc806d80614fd496f6b5ca6b55 (diff)
downloadopie-3a7ed24bd010b3313b2260a35c68cfc3b49125b2.zip
opie-3a7ed24bd010b3313b2260a35c68cfc3b49125b2.tar.gz
opie-3a7ed24bd010b3313b2260a35c68cfc3b49125b2.tar.bz2
debug
Diffstat (limited to 'core/apps/embeddedkonsole/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/embeddedkonsole/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/apps/embeddedkonsole/main.cpp b/core/apps/embeddedkonsole/main.cpp
index e3ba346..b3c0453 100644
--- a/core/apps/embeddedkonsole/main.cpp
+++ b/core/apps/embeddedkonsole/main.cpp
@@ -29,24 +29,25 @@
#include <stdio.h>
#include <stdlib.h>
/* --| main |------------------------------------------------------ */
int main(int argc, char* argv[])
{
setuid(getuid()); setgid(getgid()); // drop privileges
QPEApplication a( argc, argv );
#ifdef FAKE_CTRL_AND_ALT
+ qDebug("Fake Ctrl and Alt defined");
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";