Use _chdir on Windows
authorAdam Dickmeiss <adam@indexdata.dk>
Tue, 8 Nov 2011 11:14:48 +0000 (12:14 +0100)
committerAdam Dickmeiss <adam@indexdata.dk>
Tue, 8 Nov 2011 11:14:48 +0000 (12:14 +0100)
src/pazpar2.c

index 585c0f8..cb0d162 100644 (file)
@@ -22,6 +22,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 #endif
 #ifdef WIN32
 #include <winsock.h>
+#include <direct.h>
 #endif
 #if HAVE_UNISTD_H
 #include <unistd.h>
@@ -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;