diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2010-03-05 17:51:45 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2010-03-05 17:51:45 (GMT) |
commit | 187292532027ed6abdbd8be127381491881d5a59 (patch) | |
tree | 44f62304f23b9af8ac0f0b5f86d9acc5c00e8a32 /src/H5Opkg.h | |
parent | 179b54da83f293948a531afd6b59e676df7a60e7 (diff) | |
download | hdf5-187292532027ed6abdbd8be127381491881d5a59.zip hdf5-187292532027ed6abdbd8be127381491881d5a59.tar.gz hdf5-187292532027ed6abdbd8be127381491881d5a59.tar.bz2 |
[svn-r18376] 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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Opkg.h b/src/H5Opkg.h index 7e1811d..ee18dc9 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 */ |