Skip to content
This repository was archived by the owner on May 3, 2024. It is now read-only.

Commit fb649bc

Browse files
committed
Don't treat ENOENT for service in confd.xc as error
1 parent 6a281bf commit fb649bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conf/helpers.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ M0_INTERNAL int m0_conf_process2service_get(struct m0_confc *confc,
549549
}
550550
m0_conf_diter_fini(&it);
551551
m0_confc_close(pobj);
552-
return m0_fid_is_set(sfid) ? M0_RC(rc) : M0_ERR(-ENOENT);
552+
return m0_fid_is_set(sfid) ? M0_RC(rc) : M0_RC(-ENOENT);
553553
}
554554

555555
/* --------------------------------- >8 --------------------------------- */

0 commit comments

Comments
 (0)