From b5bf308ba50ab0bac0f0caec2d8e4d5c75c107d0 Mon Sep 17 00:00:00 2001 From: Michal Schmidt Date: Mon, 20 Jul 2015 18:36:12 +0200 Subject: core: unit_get_status_message_format() never returns NULL unit_get_status_message_format() is used only with one of JOB_START, JOB_STOP, JOB_RELOAD, all of which have fallback message strings defined, so the function may never return NULL. --- src/core/unit.c | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'src/core') diff --git a/src/core/unit.c b/src/core/unit.c index c0b5d02d35..dd5e801285 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -1322,10 +1322,9 @@ _pure_ static const char* unit_get_status_message_format(Unit *u, JobType t) { const UnitStatusMessageFormats *format_table; assert(u); - assert(t >= 0); - assert(t < _JOB_TYPE_MAX); + assert(t == JOB_START || t == JOB_STOP || t == JOB_RELOAD); - if (t == JOB_START || t == JOB_STOP) { + if (t != JOB_RELOAD) { format_table = &UNIT_VTABLE(u)->status_message_formats; if (format_table) { format = format_table->starting_stopping[t == JOB_STOP]; @@ -1339,10 +1338,8 @@ _pure_ static const char* unit_get_status_message_format(Unit *u, JobType t) { return "Starting %s."; else if (t == JOB_STOP) return "Stopping %s."; - else if (t == JOB_RELOAD) + else return "Reloading %s."; - - return NULL; } static void unit_status_print_starting_stopping(Unit *u, JobType t) { @@ -1351,8 +1348,6 @@ static void unit_status_print_starting_stopping(Unit *u, JobType t) { assert(u); format = unit_get_status_message_format(u, t); - if (!format) - return; DISABLE_WARNING_FORMAT_NONLITERAL; unit_status_printf(u, "", format); @@ -1375,8 +1370,6 @@ static void unit_status_log_starting_stopping_reloading(Unit *u, JobType t) { /* We log status messages for all units and all operations. */ format = unit_get_status_message_format(u, t); - if (!format) - return; DISABLE_WARNING_FORMAT_NONLITERAL; snprintf(buf, sizeof(buf), format, unit_description(u)); -- cgit v1.2.3-54-g00ecf