diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-08-12 01:05:35 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-12 01:05:35 +0200 |
commit | 8821a00fd5b8cb349bce66816c213573db05ec46 (patch) | |
tree | 304b1f153ffd6785ac91d31fbe1080a73d239eb6 /src/unit.h | |
parent | 302e27c89ed57f413d2a136fbe66fde32f016aed (diff) |
unit: don't show ENOENT configuration file warnings for units that are not essential
Diffstat (limited to 'src/unit.h')
-rw-r--r-- | src/unit.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/unit.h b/src/unit.h index a99d33ef07..8bd81a26d4 100644 --- a/src/unit.h +++ b/src/unit.h @@ -184,6 +184,9 @@ struct Meta { * unit here, if there was a job scheduled */ int deserialized_job; /* This is actually of type JobType */ + /* Error code when we didn't manage to load the unit (negative) */ + int load_error; + /* If we go down, pull down everything that depends on us, too */ bool recursive_stop; |