[svn-r14114] Purpose: Fix a subtle Windows bug in h5unjam

Description:
In h5unjam.c, there was a call to "open", rather than "HDopen".  This isn't a problem on most platforms, as the are equivalent.  However, on Windows, we use the HDopen macro to unconditionally set the O_BINARY flag.  This is needed to safely seek within a file.

Tested:
VS2005 on WinXP
h5committest (kagiso linew smirom)
This commit is contained in:
Scott Wegner 2007-08-27 17:35:50 -05:00
parent f3926484ce
commit eb16d8bc2b

View File

@ -252,7 +252,7 @@ main(int argc, const char *argv[])
exit(EXIT_FAILURE);
}
} else {
h5fid = open(output_file,O_WRONLY|O_CREAT|O_TRUNC, 0644 );
h5fid = HDopen(output_file,O_WRONLY|O_CREAT|O_TRUNC, 0644 );
if (h5fid < 0) {
error_msg(progname, "unable to open output HDF5 file \"%s\"\n", output_file);