diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-04-13 20:59:01 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-04-13 20:59:01 +0200 |
commit | 10a94420172b33a7472a16b2e829689dbc570cad (patch) | |
tree | 5499d906a3d812ab936d16faceaf1741bd6d0c2f /automount.c | |
parent | c27488016e0e90569260bc513fa95acbad512ff5 (diff) |
systemctl: show sub state along active state
Diffstat (limited to 'automount.c')
-rw-r--r-- | automount.c | 9 |
1 files changed, 8 insertions, 1 deletions
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 }; |