diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2011-05-09 21:39:39 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2011-05-09 21:39:39 (GMT) |
commit | 029e30704f140c0ebb248b2141a4243356cf2861 (patch) | |
tree | bec11e9e794541580facd90cbe9eb857a9f60552 /src/H5Lexternal.c | |
parent | 79a646acc7227308c0266c7e9f321524de66a0a1 (diff) | |
download | hdf5-029e30704f140c0ebb248b2141a4243356cf2861.zip hdf5-029e30704f140c0ebb248b2141a4243356cf2861.tar.gz hdf5-029e30704f140c0ebb248b2141a4243356cf2861.tar.bz2 |
[svn-r20782] I changed the macro definition of DIR_SEPC and DIR_SEPS to ']' for OpenVMS in H5private.h. Strictly speaking, it isn't
the directory seperator. But it can simplify the code and make the H5L_build_name function cleaner.
Tested on jam because the change only affects VMS.
Diffstat (limited to 'src/H5Lexternal.c')
-rw-r--r-- | src/H5Lexternal.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/H5Lexternal.c b/src/H5Lexternal.c index 74ef46b..02213d1 100644 --- a/src/H5Lexternal.c +++ b/src/H5Lexternal.c @@ -146,10 +146,9 @@ H5L_build_name(char *prefix, char *file_name, char **full_name/*out*/) /* Copy the prefix into the buffer */ HDstrcpy(*full_name, prefix); -#ifndef H5_VMS + if (!CHECK_DELIMITER(prefix[prefix_len-1])) HDstrcat(*full_name, DIR_SEPS); -#endif /* Add the external link's filename to the prefix supplied */ HDstrcat(*full_name, file_name); |