diff options
Diffstat (limited to 'xlators')
| -rw-r--r-- | xlators/cluster/dht/src/dht-rename.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/xlators/cluster/dht/src/dht-rename.c b/xlators/cluster/dht/src/dht-rename.c index 02b12887f67..fa06de71175 100644 --- a/xlators/cluster/dht/src/dht-rename.c +++ b/xlators/cluster/dht/src/dht-rename.c @@ -646,7 +646,8 @@ dht_rename_links_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                          "link/file on %s failed (%s)",                          prev->this->name, strerror (op_errno));                  local->op_ret   = -1; -                local->op_errno = op_errno; +                if (op_errno != ENOENT) +                        local->op_errno = op_errno;          }          this_call_cnt = dht_frame_return (frame);  | 
