From 87f0e418cf2c58b3201d06a60e3696ec672d2662 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 26 Jan 2010 21:39:06 +0100 Subject: s/name/unit --- target.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'target.c') diff --git a/target.c b/target.c index 12a219295b..6754676b9b 100644 --- a/target.c +++ b/target.c @@ -1,25 +1,25 @@ /*-*- Mode: C; c-basic-offset: 8 -*-*/ -#include "name.h" +#include "unit.h" #include "target.h" #include "load-fragment.h" -static void target_done(Name *n) { - Target *m = TARGET(n); +static void target_done(Unit *u) { + Target *m = TARGET(u); assert(m); /* Nothing here for now */ } -static NameActiveState target_active_state(Name *n) { - return TARGET(n)->state == TARGET_DEAD ? NAME_INACTIVE : NAME_ACTIVE; +static UnitActiveState target_active_state(Unit *u) { + return TARGET(u)->state == TARGET_DEAD ? UNIT_INACTIVE : UNIT_ACTIVE; } -const NameVTable target_vtable = { +const UnitVTable target_vtable = { .suffix = ".target", - .init = name_load_fragment, + .init = unit_load_fragment, .done = target_done, .active_state = target_active_state -- cgit v1.2.3-54-g00ecf