mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r4069] Purpose:
Code cleanup... Description: Took out Windows ifdef and switched back to just using HDmkdir
This commit is contained in:
parent
bc4828f90a
commit
8a71bdcfde
@ -402,14 +402,11 @@ h5_fixname(const char *base_name, hid_t fapl, char *fullname, size_t size)
|
||||
|
||||
if (HDstat(fullname, &buf) < 0)
|
||||
/* The directory doesn't exist just yet */
|
||||
#ifdef WIN32
|
||||
if (_mkdir(fullname)<0){
|
||||
#else
|
||||
if (HDmkdir(fullname, (mode_t)0755) < 0 && errno != EEXIST){
|
||||
#endif
|
||||
if (HDmkdir(fullname, (mode_t)0755) < 0 && errno != EEXIST) {
|
||||
/* We couldn't make the "/tmp/${USER,LOGIN}" subdirectory.
|
||||
* Default to PREFIX's original prefix value. */
|
||||
HDstrcpy(fullname, prefix);}
|
||||
HDstrcpy(fullname, prefix);
|
||||
}
|
||||
|
||||
HDstrcat(fullname, "/");
|
||||
HDstrcat(fullname, base_name);
|
||||
|
Loading…
x
Reference in New Issue
Block a user