mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 00:14:32 +09:00
sysext: do not return 0 if unmerge() fails in the refresh() function.
Actually, return the result of `unmerge()` if it is called in the `refresh()`
function.
Fixes 8662fcbcf1
This commit is contained in:
committed by
Lennart Poettering
parent
a4acc2528f
commit
8ebfef5c96
@@ -2019,7 +2019,7 @@ static int refresh(
|
||||
* 4. If there was no overlayfs mount so far, and no extensions installed, we implement a NOP.
|
||||
*/
|
||||
|
||||
return 0;
|
||||
return r;
|
||||
}
|
||||
|
||||
static int verb_refresh(int argc, char **argv, void *userdata) {
|
||||
|
||||
Reference in New Issue
Block a user