diff options
author | cinap_lenrek <cinap_lenrek@localhost> | 2011-04-30 20:17:33 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@localhost> | 2011-04-30 20:17:33 +0000 |
commit | 15656fc79d5e348dddbde615a84e7288b580b35e (patch) | |
tree | c0bb74855eda3715454ec77d3ba6f78e07f215fb /sys/src/9/port/devsrv.c | |
parent | 06db9d4d681e552e0d4803e76becace707a72f12 (diff) |
boot(8): fix boot restarting
Diffstat (limited to 'sys/src/9/port/devsrv.c')
-rw-r--r-- | sys/src/9/port/devsrv.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/src/9/port/devsrv.c b/sys/src/9/port/devsrv.c index 161e77eed..0a8996750 100644 --- a/sys/src/9/port/devsrv.c +++ b/sys/src/9/port/devsrv.c @@ -205,12 +205,9 @@ srvremove(Chan *c) /* * Only eve can remove system services. - * No one can remove #s/boot. */ if(strcmp(sp->owner, eve) == 0 && !iseve()) error(Eperm); - if(strcmp(sp->name, "boot") == 0) - error(Eperm); /* * No removing personal services. |