summaryrefslogtreecommitdiffstats
path: root/src/H5Opkg.h
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2010-03-05 17:53:23 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2010-03-05 17:53:23 (GMT)
commitaf527abf6c2d0586fef45e9525b8718c36e1c0a7 (patch)
tree0e0e2661d3e7c56c428ba00b8ae5a7022b96b41e /src/H5Opkg.h
parent3b921a4b4f651ec07b69502b3d42ab5799e0038a (diff)
downloadhdf5-af527abf6c2d0586fef45e9525b8718c36e1c0a7.zip
hdf5-af527abf6c2d0586fef45e9525b8718c36e1c0a7.tar.gz
hdf5-af527abf6c2d0586fef45e9525b8718c36e1c0a7.tar.bz2
[svn-r18377] Purpose: Fix bug 1733
Description: Support for expanding external links was not implemented in H5Ocopy, even though a flag existed for H5Pset_copy_object to enable this. This patch implements this feature. Tested: jam, amani, linew (h5committest); Fedora
Diffstat (limited to 'src/H5Opkg.h')
-rw-r--r--src/H5Opkg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Opkg.h b/src/H5Opkg.h
index 181767a..166bf72 100644
--- a/src/H5Opkg.h
+++ b/src/H5Opkg.h
@@ -326,7 +326,7 @@ typedef struct H5O_obj_class_t {
/* Node in skip list to map addresses from one file to another during object header copy */
typedef struct H5O_addr_map_t {
- haddr_t src_addr; /* Address of object in source file */
+ H5_obj_t src_obj_pos; /* Location of source object */
haddr_t dst_addr; /* Address of object in destination file */
hbool_t is_locked; /* Indicate that the destination object is locked currently */
hsize_t inc_ref_count; /* Number of deferred increments to reference count */