Changeset 975
- Timestamp:
- Dec 22, 2020, 6:12:05 PM (4 years ago)
- Location:
- trunk/zoo-project/zoo-kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-project/zoo-kernel/service.h
r962 r975 88 88 89 89 #else 90 #include <sys/stat.h> 90 91 /** 91 92 * The crossplatform strdup alias … … 95 96 * The crossplatform mkdir alias 96 97 */ 97 #define zMkdir mkdir 98 static int zMkdir(const char* pccPath){ 99 return mkdir(pccPath,0777); 100 } 98 101 /** 99 102 * The crossplatform open alias -
trunk/zoo-project/zoo-kernel/service_json.c
r967 r975 1318 1318 tmpPath->value, 1319 1319 cIdentifier->value); 1320 if( mkdir(tmp1,0777) != 0 && errno != EEXIST){1320 if(zMkdir(tmp1) != 0 && errno != EEXIST){ 1321 1321 fprintf(stderr,"Issue creating directory %s\n",tmp1); 1322 1322 return NULL;
Note: See TracChangeset
for help on using the changeset viewer.