From: Adam Dickmeiss Date: Tue, 8 Nov 2011 11:14:48 +0000 (+0100) Subject: Use _chdir on Windows X-Git-Tag: mobile-beta-1~3^2~4 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=873be84689528ca10a1ded3dd4bbda24b6916882;p=pazpar2-moved-to-github.git Use _chdir on Windows --- diff --git a/src/pazpar2.c b/src/pazpar2.c index 585c0f8..cb0d162 100644 --- a/src/pazpar2.c +++ b/src/pazpar2.c @@ -22,6 +22,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #endif #ifdef WIN32 #include +#include #endif #if HAVE_UNISTD_H #include @@ -157,7 +158,13 @@ static int sc_main( show_version(); break; case 'w': - if (chdir(arg)) + if ( +#ifdef WIN32 + _chdir +#else + chdir +#endif + (arg)) { yaz_log(YLOG_FATAL|YLOG_ERRNO, "chdir %s", arg); return 1;