From 10a94420172b33a7472a16b2e829689dbc570cad Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 13 Apr 2010 20:59:01 +0200 Subject: systemctl: show sub state along active state --- automount.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'automount.c') diff --git a/automount.c b/automount.c index c6ce25d8b2..1192949d83 100644 --- a/automount.c +++ b/automount.c @@ -93,6 +93,12 @@ static UnitActiveState automount_active_state(Unit *u) { return state_translation_table[AUTOMOUNT(u)->state]; } +static const char *automount_sub_state_to_string(Unit *u) { + assert(u); + + return state_string_table[AUTOMOUNT(u)->state]; +} + const UnitVTable automount_vtable = { .suffix = ".mount", @@ -104,5 +110,6 @@ const UnitVTable automount_vtable = { .dump = automount_dump, - .active_state = automount_active_state + .active_state = automount_active_state, + .sub_state_to_string = automount_sub_state_to_string }; -- cgit v1.2.3-54-g00ecf