diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-08-28 22:45:23 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-08-28 22:45:23 (GMT) |
commit | bc07e61d2937d1e62e0fc1fec10f54ed9647fa3b (patch) | |
tree | e4086a55da2a8a48e36eee285d7504502b73d83d /test/links.c | |
parent | cae55b647da56ab390e048219efaef6a1afdccee (diff) | |
download | hdf5-bc07e61d2937d1e62e0fc1fec10f54ed9647fa3b.zip hdf5-bc07e61d2937d1e62e0fc1fec10f54ed9647fa3b.tar.gz hdf5-bc07e61d2937d1e62e0fc1fec10f54ed9647fa3b.tar.bz2 |
[svn-r14123] Description:
Move H5Gmove2() to deprecated code section, replacing it with H5Lmove()
in the source code.
Tested on:
FreeBSD/32 6.2 (duty)
FreeBSD/64 6.2 (liberty)
Linux/32 2.6 (kagiso)
Linux/64 2.6 (smirom)
Solaris/32 5.10 (linew)
Mac OS X/32 10.4.10 (amazon)
Diffstat (limited to 'test/links.c')
-rw-r--r-- | test/links.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/links.c b/test/links.c index 9427ac9..11a5e9e 100644 --- a/test/links.c +++ b/test/links.c @@ -3027,7 +3027,7 @@ external_link_move(hid_t fapl, hbool_t new_format) if((gid = H5Gcreate2(fid, "group2", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) FAIL_STACK_ERROR /* Move external link to different group */ - if(H5Gmove2(fid, "src2", gid, "src3") < 0) FAIL_STACK_ERROR + if(H5Lmove(fid, "src2", gid, "src3", H5P_DEFAULT, H5P_DEFAULT) < 0) FAIL_STACK_ERROR /* Close new group */ if(H5Gclose(gid) < 0) FAIL_STACK_ERROR |