diff options
author | Michal Schmidt <mschmidt@redhat.com> | 2015-07-21 15:51:16 +0200 |
---|---|---|
committer | Michal Schmidt <mschmidt@redhat.com> | 2015-07-21 19:24:20 +0200 |
commit | c382d69e3d39daedebcedb2da882beeb147a3cda (patch) | |
tree | 6130ba60dc2b63a02f24cd80f11b7ce0e4d4b5f8 /src/core/busname.c | |
parent | aa49ab5f22c0fdc7a5381d4e452f40705f3d7bf8 (diff) |
core: remove generic job completion messages from unit vtables
These units' message format strings are identical to the generic
strings. Since we can always rely on the fallback, these are now
redundant.
Diffstat (limited to 'src/core/busname.c')
-rw-r--r-- | src/core/busname.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/busname.c b/src/core/busname.c index 2085721546..9530a87311 100644 --- a/src/core/busname.c +++ b/src/core/busname.c @@ -1065,13 +1065,10 @@ const UnitVTable busname_vtable = { .finished_start_job = { [JOB_DONE] = "Listening on %s.", [JOB_FAILED] = "Failed to listen on %s.", - [JOB_DEPENDENCY] = "Dependency failed for %s.", - [JOB_TIMEOUT] = "Timed out starting %s.", }, .finished_stop_job = { [JOB_DONE] = "Closed %s.", [JOB_FAILED] = "Failed stopping %s.", - [JOB_TIMEOUT] = "Timed out stopping %s.", }, }, }; |