summaryrefslogtreecommitdiffstats
path: root/inittab.c
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2014-10-12 14:54:29 +0200
committerJohn Crispin <blogic@openwrt.org>2014-10-12 15:01:47 +0200
commitb9a389c841db8433bb3b02158b1512cf577dbff7 (patch)
treef9e3b37b5900c319826bf6374efa0d3653291cce /inittab.c
parente63051d9843ddbafb1fabfd97d60e853bdeac129 (diff)
downloadunitd-b9a389c841db8433bb3b02158b1512cf577dbff7.tar
unitd-b9a389c841db8433bb3b02158b1512cf577dbff7.zip
minor fixes to michels patches
Signed-off-by: John Crispin <blogic@openwrt.org>
Diffstat (limited to 'inittab.c')
-rw-r--r--inittab.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/inittab.c b/inittab.c
index 7f76a1e..0d62708 100644
--- a/inittab.c
+++ b/inittab.c
@@ -85,7 +85,7 @@ static int dev_exist(const char *dev)
if (res != -1) {
close(res);
}
-
+
return (res != -1);
}
@@ -172,10 +172,10 @@ static void askconsole(struct init_action *a)
int i;
tty = get_cmdline_val("console", line, sizeof(line));
- split=strchr(tty, ',');
- if (split != NULL)
- split = '\0';
-
+ split = strchr(tty, ',');
+ if (split)
+ *split = '\0';
+
if (!dev_exist(tty)) {
DEBUG(4, "skipping %s\n", tty);
return;