summaryrefslogtreecommitdiff
path: root/udev
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2010-05-27 17:45:58 +0200
committerKay Sievers <kay.sievers@vrfy.org>2010-05-27 17:45:58 +0200
commitd4c1467f8527b9b1b7e716347cf6f101542343dd (patch)
treec73b543db4a78f6b2f6fd165b28e73450a3f89f2 /udev
parent337d10278380ba3605f0e1e730c542ca20a817fe (diff)
udevd: fix comments
Diffstat (limited to 'udev')
-rw-r--r--udev/udevd.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/udev/udevd.c b/udev/udevd.c
index 189ab007a4..79a269ada0 100644
--- a/udev/udevd.c
+++ b/udev/udevd.c
@@ -1023,7 +1023,7 @@ int main(int argc, char *argv[])
goto exit;
}
- /* make sure std{in,out,err} fd's are in a sane state */
+ /* make sure std{in,out,err} fds are in a sane state */
fd = open("/dev/null", O_RDWR);
if (fd < 0) {
fprintf(stderr, "cannot open /dev/null\n");
@@ -1034,7 +1034,6 @@ int main(int argc, char *argv[])
if (write(STDERR_FILENO, 0, 0) < 0)
dup2(fd, STDERR_FILENO);
- /* init control socket, bind() ensures, that only one udevd instance is running */
udev_ctrl = udev_ctrl_new_from_socket(udev, UDEV_CTRL_SOCK_PATH);
if (udev_ctrl == NULL) {
fprintf(stderr, "error initializing control socket");
@@ -1148,7 +1147,6 @@ int main(int argc, char *argv[])
fclose(f);
}
- /* redirect std{out,err} */
if (!debug) {
dup2(fd, STDIN_FILENO);
dup2(fd, STDOUT_FILENO);
@@ -1157,7 +1155,7 @@ int main(int argc, char *argv[])
if (fd > STDERR_FILENO)
close(fd);
- /* set scheduling priority for the daemon */
+ /* set scheduling priority for the main daemon process */
setpriority(PRIO_PROCESS, 0, UDEVD_PRIORITY);
chdir("/");