summaryrefslogtreecommitdiffstats
path: root/src/H5O.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-02-01 02:31:34 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-02-01 02:31:34 (GMT)
commit3b8b18d16e7aeaee99b6ca7d45a5b0e28a86595b (patch)
treefb4d80d688c6ffb0ae69cbadb4d983e04acb5d6c /src/H5O.c
parent940f64156bb08c8875dd18ecb96e9a58f3c8ad82 (diff)
downloadhdf5-3b8b18d16e7aeaee99b6ca7d45a5b0e28a86595b.zip
hdf5-3b8b18d16e7aeaee99b6ca7d45a5b0e28a86595b.tar.gz
hdf5-3b8b18d16e7aeaee99b6ca7d45a5b0e28a86595b.tar.bz2
[svn-r16394] Description:
Rename H5O_msg_read_real -> H5O_msg_read_oh, to be more consistent with other routines in library. Move H5O_msg_read_oh and H5O_msg_exists_oh from package to private header file, so other routines in library can use them. Tested on: FreeBSD/32 6.3 (duty) Too minor to require h5committest
Diffstat (limited to 'src/H5O.c')
-rw-r--r--src/H5O.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5O.c b/src/H5O.c
index 1d640fa..5dfca1b 100644
--- a/src/H5O.c
+++ b/src/H5O.c
@@ -2321,9 +2321,9 @@ H5O_get_info(H5O_loc_t *oloc, hid_t dxpl_id, hbool_t want_ih_info, H5O_info_t *o
oinfo->btime = 0;
/* Might be information for modification time */
- if(NULL == H5O_msg_read_real(oloc->file, dxpl_id, oh, H5O_MTIME_ID, &oinfo->ctime)) {
+ if(NULL == H5O_msg_read_oh(oloc->file, dxpl_id, oh, H5O_MTIME_ID, &oinfo->ctime)) {
H5E_clear_stack(NULL);
- if(NULL == H5O_msg_read_real(oloc->file, dxpl_id, oh, H5O_MTIME_NEW_ID, &oinfo->ctime)) {
+ if(NULL == H5O_msg_read_oh(oloc->file, dxpl_id, oh, H5O_MTIME_NEW_ID, &oinfo->ctime)) {
H5E_clear_stack(NULL);
oinfo->ctime = 0;
} /* end if */