Deleted Added
full compact
34a35,36
> *
> * $Id$
63a66
> #include <err.h>
198,201c201,202
< if (getuid() != 0) {
< (void)fprintf(stderr, "init: %s\n", strerror(EPERM));
< exit (1);
< }
---
> if (getuid() != 0)
> errx(1, "%s", strerror(EPERM));
204,207c205,206
< if (getpid() != 1) {
< (void)fprintf(stderr, "init: already running\n");
< exit (1);
< }
---
> if (getpid() != 1)
> errx(1, "already running");