diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-08-04 05:58:34 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-08-04 05:58:34 (GMT) |
commit | a80d0f1e83031ca29574777ee3874d89cdd2dbb1 (patch) | |
tree | 42a6b8f5959ec5809578f210d3ffb24b97a27c4b /src/H5FDsec2.c | |
parent | e47d1d053efb2ca38a54d5ed21d209b3576961b2 (diff) | |
download | hdf5-a80d0f1e83031ca29574777ee3874d89cdd2dbb1.zip hdf5-a80d0f1e83031ca29574777ee3874d89cdd2dbb1.tar.gz hdf5-a80d0f1e83031ca29574777ee3874d89cdd2dbb1.tar.bz2 |
[svn-r11196] Purpose:
Code tweak
Description:
Add in a couple of minor changes from Elena's version of pushing the
system error information on the error stack.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'src/H5FDsec2.c')
-rw-r--r-- | src/H5FDsec2.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/H5FDsec2.c b/src/H5FDsec2.c index 51da619..0aa898e 100644 --- a/src/H5FDsec2.c +++ b/src/H5FDsec2.c @@ -362,11 +362,10 @@ H5FD_sec2_open(const char *name, unsigned flags, hid_t UNUSED fapl_id, if (H5F_ACC_EXCL & flags) o_flags |= O_EXCL; /* Open the file */ - if ((fd=HDopen(name, o_flags, 0666))<0){ + if ((fd=HDopen(name, o_flags, 0666))<0) HSYS_GOTO_ERROR(H5E_FILE, H5E_CANTOPENFILE, NULL, "unable to open file") - } if (HDfstat(fd, &sb)<0) - HGOTO_ERROR(H5E_FILE, H5E_BADFILE, NULL, "unable to fstat file") + HSYS_GOTO_ERROR(H5E_FILE, H5E_BADFILE, NULL, "unable to fstat file") /* Create the new file struct */ if (NULL==(file=H5FL_CALLOC(H5FD_sec2_t))) |