summaryrefslogtreecommitdiffstats
path: root/src/H5I.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5I.c')
-rw-r--r--src/H5I.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5I.c b/src/H5I.c
index f04914a..65d7a90 100644
--- a/src/H5I.c
+++ b/src/H5I.c
@@ -1156,11 +1156,11 @@ H5Iget_name(hid_t id, char *name/*out*/, size_t size)
/* get symbol table entry */
if(NULL!=(ent = H5G_loc(id))) {
- if (ent->name != NULL) {
- len = HDstrlen(ent->name);
+ if (ent->user_path != NULL && ent->user_path_hidden==0) {
+ len = HDstrlen(ent->user_path);
if(name) {
- HDstrncpy(name, ent->name, MIN(len+1,size));
+ HDstrncpy(name, ent->user_path, MIN(len+1,size));
if(len >= size)
name[size-1]='\0';
} /* end if */