X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Fmetaproxy_prog.cpp;h=177eb9fb45e638ade100038d171e01ce8c01b16a;hb=894ac3ac0f6eb5695da4e4b43eea74beca1de437;hp=b8739b858e551b7cf0712c8cb26fd23d91b30674;hpb=e24792e0dbf560d96ea7b74b0d85158313a5d896;p=metaproxy-moved-to-github.git diff --git a/src/metaproxy_prog.cpp b/src/metaproxy_prog.cpp index b8739b8..177eb9f 100644 --- a/src/metaproxy_prog.cpp +++ b/src/metaproxy_prog.cpp @@ -31,6 +31,13 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include "router_flexml.hpp" #include "factory_static.hpp" +#if HAVE_UNISTD_H +#include +#endif +#ifdef WIN32 +#include +#endif + namespace mp = metaproxy_1; static void handler(void *data) @@ -52,7 +59,7 @@ int main(int argc, char **argv) const char *pidfile = 0; const char *uid = 0; - while ((ret = options("c{config}:Dh{help}l:p:u:V{version}X", + while ((ret = options("c{config}:Dh{help}l:p:u:V{version}w:X", argv, argc, &arg)) != -2) { switch (ret) @@ -72,6 +79,7 @@ int main(int argc, char **argv) " -l f log file f\n" " -p f pid file f\n" " -u id change uid to id\n" + " -w dir changes working directory to dir\n" " -X debug mode (no fork/daemon mode)\n" << std::endl; break; @@ -88,6 +96,12 @@ int main(int argc, char **argv) std::cout << VERSION "\n"; std::exit(0); break; + case 'w': + if (chdir(arg)) + { + std::cerr << "chdir " << arg << " failed" << std::endl; + std::exit(1); + } case 'X': mode = YAZ_DAEMON_DEBUG; break;