aboutsummaryrefslogtreecommitdiff
path: root/src/rc-update.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rc-update.c')
-rw-r--r--src/rc-update.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/rc-update.c b/src/rc-update.c
index fc9ef504..34f10b91 100644
--- a/src/rc-update.c
+++ b/src/rc-update.c
@@ -208,8 +208,11 @@ int rc_update (int argc, char **argv)
eerror ("%s: service `%s' does not exist", applet, service);
else {
retval = EXIT_SUCCESS;
- if (! runlevels)
- rc_strlist_add (&runlevels, rc_get_runlevel ());
+ if (! runlevels) {
+ runlevel = rc_get_runlevel ();
+ rc_strlist_add (&runlevels, runlevel);
+ free (runlevel);
+ }
STRLIST_FOREACH (runlevels, runlevel, i) {
if (action & DOADD) {
if (! add (runlevel, service))