summaryrefslogtreecommitdiff
path: root/src/rc/rc-applets.c
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-03-25 18:20:23 +0000
committerRoy Marples <roy@marples.name>2008-03-25 18:20:23 +0000
commit068c90c82b07343b5f54fe5ac836fe3efc66f51f (patch)
treeaebe53e57eb208663eea20c0ae64217fc4c38075 /src/rc/rc-applets.c
parent59b27ad7eb40d81225d5adc96d97f7e6250b5b79 (diff)
downloadopenrc-068c90c82b07343b5f54fe5ac836fe3efc66f51f.tar.gz
openrc-068c90c82b07343b5f54fe5ac836fe3efc66f51f.tar.bz2
openrc-068c90c82b07343b5f54fe5ac836fe3efc66f51f.tar.xz
Fix exclusive removal.
Diffstat (limited to 'src/rc/rc-applets.c')
-rw-r--r--src/rc/rc-applets.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rc/rc-applets.c b/src/rc/rc-applets.c
index 539ef39..34ab7b0 100644
--- a/src/rc/rc-applets.c
+++ b/src/rc/rc-applets.c
@@ -295,10 +295,10 @@ static int do_mark_service(int argc, char **argv)
/* Remove the exclusive time test. This ensures that it's not
in control as well */
- l = strlen(RC_SVCDIR "exclusive") + strlen(svcname) +
+ l = strlen(RC_SVCDIR "/exclusive") + strlen(svcname) +
strlen(runscript_pid) + 4;
mtime = xmalloc(l);
- snprintf(mtime, l, RC_SVCDIR "exclusive/%s.%s",
+ snprintf(mtime, l, RC_SVCDIR "/exclusive/%s.%s",
svcname, runscript_pid);
if (exists(mtime) && unlink(mtime) != 0)
eerror("%s: unlink: %s", applet, strerror(errno));