summaryrefslogtreecommitdiffstats
path: root/src/H5private.h
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2011-05-09 21:39:39 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2011-05-09 21:39:39 (GMT)
commit029e30704f140c0ebb248b2141a4243356cf2861 (patch)
treebec11e9e794541580facd90cbe9eb857a9f60552 /src/H5private.h
parent79a646acc7227308c0266c7e9f321524de66a0a1 (diff)
downloadhdf5-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/H5private.h')
-rw-r--r--src/H5private.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5private.h b/src/H5private.h
index b465ff6..09df6ac 100644
--- a/src/H5private.h
+++ b/src/H5private.h
@@ -1469,13 +1469,13 @@ extern char *strdup(const char *s);
/* OpenVMS pathname: <disk name>$<partition>:[path]<file name>
* i.g. SYS$SYSUSERS:[LU.HDF5.SRC]H5system.c */
-#define DIR_SEPC '.'
-#define DIR_SEPS "."
+#define DIR_SEPC ']'
+#define DIR_SEPS "]"
#define CHECK_DELIMITER(SS) (SS == DIR_SEPC)
#define CHECK_ABSOLUTE(NAME) (strrchr(NAME, ':') && strrchr(NAME, '['))
#define CHECK_ABS_DRIVE(NAME) (0)
#define CHECK_ABS_PATH(NAME) (0)
-#define GET_LAST_DELIMITER(NAME, ptr) ptr = strrchr(NAME, ']');
+#define GET_LAST_DELIMITER(NAME, ptr) ptr = strrchr(NAME, DIR_SEPC);
#else