summaryrefslogtreecommitdiff
authorzecke <zecke>2004-12-20 22:27:21 (UTC)
committer zecke <zecke>2004-12-20 22:27:21 (UTC)
commit89b3fd61bdd13e62ff64bd7ab0b15c10a964b867 (patch) (side-by-side diff)
tree6cc25286965e93788e9e47b7743f2379ec328bf5
parent2be4d5bf420dc4aff71cf78601c095a96ed88c47 (diff)
downloadopie-89b3fd61bdd13e62ff64bd7ab0b15c10a964b867.zip
opie-89b3fd61bdd13e62ff64bd7ab0b15c10a964b867.tar.gz
opie-89b3fd61bdd13e62ff64bd7ab0b15c10a964b867.tar.bz2
Restore change
-QPEApplication::qpeDir() is guranteed to be '/' terminated
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings2/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/networksettings2/main.cpp b/noncore/settings/networksettings2/main.cpp
index 9004d19..18bf652 100644
--- a/noncore/settings/networksettings2/main.cpp
+++ b/noncore/settings/networksettings2/main.cpp
@@ -79,25 +79,25 @@ int main( int argc, char * argv[] ) {
#else
TheApp = new QApplication( argc, argv, GuiType );
#endif
// init qt with app widget
switch( Action ) {
case ACT_REQUEST :
{ NetworkSettingsData NS;
if( NS.canStart( argv[1] ) ) {
QString S;
S.sprintf( QPEApplication::qpeDir()+
- "/bin/networksettings2" );
+ "bin/networksettings2" );
char * MyArgv[4];
MyArgv[0] = "networksettings2";
MyArgv[1] = "--prompt";
MyArgv[2] = argv[1];
MyArgv[3] = NULL;
NSResources->system().execAsUser( S, MyArgv );
Log(("FAILED %s-cNN-allowed\n", argv[1] ));
// if we come here , failed
printf( "%s-cNN-disallowed", argv[1] );
}
}
break;