summaryrefslogtreecommitdiff
path: root/utils/filepath.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-04-28 17:36:51 +0100
committerVincent Sanders <vince@kyllikki.org>2014-04-28 17:38:15 +0100
commit5dd6fa6f228f022d3e2e3e1ee7a21b3d4f17724e (patch)
tree8172aa4a03937a4fd04c3cfa20a99b12a1317bbb /utils/filepath.c
parent1fd565cba706d6a9e809d14f79ceb92633b62ead (diff)
downloadnetsurf-5dd6fa6f228f022d3e2e3e1ee7a21b3d4f17724e.tar.gz
netsurf-5dd6fa6f228f022d3e2e3e1ee7a21b3d4f17724e.tar.bz2
use compatability macro for mkdir
Diffstat (limited to 'utils/filepath.c')
-rw-r--r--utils/filepath.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/filepath.c b/utils/filepath.c
index d82dfc627..68e8d7e79 100644
--- a/utils/filepath.c
+++ b/utils/filepath.c
@@ -31,6 +31,7 @@
#include <unistd.h>
#include <string.h>
+#include "utils/utils.h"
#include "utils/config.h"
#include "utils/filepath.h"
@@ -378,7 +379,7 @@ nserror filepath_mkdir_all(const char *fname)
while ((sep = strchr(sep, '/')) != NULL) {
*sep = 0;
if (stat(dname, &sb) != 0) {
- if (mkdir(dname, S_IRWXU) != 0) {
+ if (nsmkdir(dname, S_IRWXU) != 0) {
/* could not create path element */
free(dname);
return NSERROR_NOT_FOUND;