Skip to content

Commit

Permalink
modules/kvs: Support namespace in symlink
Browse files Browse the repository at this point in the history
  • Loading branch information
chu11 committed Jan 29, 2019
1 parent ca64dd7 commit 7dcc877
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/kvs/kvstxn.c
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ static int kvstxn_link_dirent (kvstxn_t *kt, int current_epoch,
assert (target);

/* can't cross into a new namespace */
if (ns && strcmp (ns, kt->ktm->namespace)) {
if (ns && strcmp (ns, kt->ktm->ns_name)) {
saved_errno = EINVAL;
goto done;
}
Expand Down

0 comments on commit 7dcc877

Please sign in to comment.