aboutsummaryrefslogtreecommitdiffstats
path: root/nldev.c
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2015-03-15 15:45:03 +0100
committerNatanael Copa <ncopa@alpinelinux.org>2015-03-15 15:45:03 +0100
commitd59b658d45428fce9bb63f5d7df6757c71fc8ea6 (patch)
tree8f818644d8bca10dee271174f19caf63c9cca916 /nldev.c
parent3398886c738a8ee9ac2263b36d359ea7073085db (diff)
downloadnldev-d59b658d45428fce9bb63f5d7df6757c71fc8ea6.tar.bz2
nldev-d59b658d45428fce9bb63f5d7df6757c71fc8ea6.tar.xz
nldev: remove unused option for debugHEADmaster
Diffstat (limited to 'nldev.c')
-rw-r--r--nldev.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/nldev.c b/nldev.c
index 4579c51..6687632 100644
--- a/nldev.c
+++ b/nldev.c
@@ -24,8 +24,6 @@
#include "arg.h"
#include "log.h"
-int dofork = 0;
-
pid_t
spawn_handler(int fd, char **argv)
{
@@ -107,7 +105,7 @@ init_netlink_socket(void)
void
usage(void)
{
- die("usage: %s [-d] -- runpath [...]\n", argv0);
+ die("usage: %s runpath [...]\n", argv0);
}
int
@@ -116,9 +114,6 @@ main(int argc, char *argv[])
struct pollfd fds;
ARGBEGIN {
- case 'd':
- dodebug = 1;
- break;
default:
usage();
} ARGEND;