X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=target.c;h=176ab68c42f4d5f7ce2a601c3dffcd867f3d0028;hp=e6f26f1412ad19ad63117a8603140d1a72b58852;hb=8d567588cad053f79abe603ab113e1b85a92f1da;hpb=9e2f7c11fb6ba35ffec2274da3e2d08b10d23965 diff --git a/target.c b/target.c index e6f26f141..176ab68c4 100644 --- a/target.c +++ b/target.c @@ -37,15 +37,6 @@ static const char* const state_string_table[_TARGET_STATE_MAX] = { [TARGET_ACTIVE] = "active" }; -static void target_init(Unit *u) { - Target *t = TARGET(u); - - assert(t); - assert(u->meta.load_state == UNIT_STUB); - - t->state = 0; -} - static void target_dump(Unit *u, FILE *f, const char *prefix) { Target *t = TARGET(u); @@ -134,7 +125,6 @@ int target_get_runlevel(Target *t) { const UnitVTable target_vtable = { .suffix = ".target", - .init = target_init, .load = unit_load_fragment_and_dropin, .dump = target_dump,