diff options
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 }; |