From 10edca8e0e16c3a5e927e80c4cfd1a06c0b76e76 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Fri, 14 Dec 2007 23:00:29 +0000 Subject: Only assume the current runlevel if none specified --- src/rc-update.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/rc-update.c') diff --git a/src/rc-update.c b/src/rc-update.c index e39db593..7c611d3c 100644 --- a/src/rc-update.c +++ b/src/rc-update.c @@ -241,15 +241,14 @@ int rc_update (int argc, char **argv) if (action & DOADD) { actfunc = add; - if (! runlevels) - rc_strlist_add (&runlevels, rc_runlevel_get ()); } else if (action & DODELETE) { actfunc = delete; - if (! runlevels) - runlevels = rc_runlevel_list (); } else eerrorx ("%s: invalid action", applet); + if (! runlevels) + rc_strlist_add (&runlevels, rc_runlevel_get ()); + if (! runlevels) eerrorx ("%s: no runlevels found", applet); -- cgit v1.2.3