diff options
author | Kay Sievers <kay.sievers@suse.de> | 2006-08-21 02:38:20 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@suse.de> | 2006-08-21 02:38:20 +0200 |
commit | e3396a2d383cf19092911a4643e092f6a825b2aa (patch) | |
tree | 8b002d91b5af5b243d1bb623c22309a2e3c96cf4 /udev.c | |
parent | c4edd0adb55ebf625a0f190071b930b469c58dd8 (diff) |
cleanup commandline argument handling
Print and log failure, but don't fail for tools which are
usually not used iteractively. Add '--help' to all tools.
Diffstat (limited to 'udev.c')
-rw-r--r-- | udev.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -77,7 +77,7 @@ int main(int argc, char *argv[], char *envp[]) exit(0); } - /* set std fd's to /dev/null, if the kernel forks us, we don't have them at all */ + /* set std fd's to /dev/null, /sbin/hotplug forks us, we don't have them at all */ devnull = open("/dev/null", O_RDWR); if (devnull >= 0) { if (devnull != STDIN_FILENO) @@ -92,7 +92,7 @@ int main(int argc, char *argv[], char *envp[]) logging_init("udev"); if (devnull < 0) - err("fatal, could not open /dev/null: %s", strerror(errno)); + err("open /dev/null failed: %s", strerror(errno)); udev_config_init(); selinux_init(); dbg("version %s", UDEV_VERSION); |