integrated changes from 1.3.6

This commit is contained in:
Guenter Obiltschnig
2009-06-17 06:47:38 +00:00
parent 09fce4461e
commit 0336789662
24 changed files with 32 additions and 31 deletions

View File

@@ -1,7 +1,7 @@
//
// ServerApplication.cpp
//
// $Id: //poco/Main/Util/src/ServerApplication.cpp#28 $
// $Id: //poco/Main/Util/src/ServerApplication.cpp#29 $
//
// Library: Util
// Package: Application
@@ -423,7 +423,8 @@ int ServerApplication::run(int argc, char** argv)
init(argc, argv);
if (runAsDaemon)
{
chdir("/");
int rc = chdir("/");
if (rc != 0) return EXIT_OSERR;
}
}
catch (Exception& exc)