From b2370203d92d23422db06e387ecfefeddb124c0c Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Thu, 11 Apr 2024 14:41:17 +0200 Subject: [PATCH] sysext: Use EPROTO for child failure --- src/sysext/sysext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sysext/sysext.c b/src/sysext/sysext.c index ad8785cd463..a1397d7d057 100644 --- a/src/sysext/sysext.c +++ b/src/sysext/sysext.c @@ -1788,7 +1788,7 @@ static int merge(ImageClass image_class, if (r == 123) /* exit code 123 means: didn't do anything */ return 0; if (r > 0) - return log_error_errno(SYNTHETIC_ERRNO(ENXIO), "Failed to merge hierarchies"); + return log_error_errno(SYNTHETIC_ERRNO(EPROTO), "Failed to merge hierarchies"); r = need_reload(image_class, hierarchies, no_reload); if (r < 0) -- 2.47.3