projects
/
pazpar2-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
540f17b
)
Use _chdir on Windows
author
Adam Dickmeiss
<adam@indexdata.dk>
Tue, 8 Nov 2011 11:14:48 +0000
(12:14 +0100)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Tue, 8 Nov 2011 11:14:48 +0000
(12:14 +0100)
src/pazpar2.c
patch
|
blob
|
history
diff --git
a/src/pazpar2.c
b/src/pazpar2.c
index
585c0f8
..
cb0d162
100644
(file)
--- 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 <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;