got my background/foreground logic backwards

This commit is contained in:
Evan Prodromou 2009-06-28 16:33:08 -04:00
parent 0c3bfc2212
commit cfd2548923
1 changed files with 1 additions and 1 deletions

View File

@ -335,6 +335,6 @@ if (have_option('i', 'id')) {
$foreground = have_option('f', 'foreground');
$daemon = new XMPPDaemon($id, $foreground);
$daemon = new XMPPDaemon($id, !$foreground);
$daemon->runOnce();