diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2000-07-03 13:34:18 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2000-07-03 13:34:18 +0000 |
| commit | 7095e0970e532bbdeeace8f6c0a991208fcae4de (patch) | |
| tree | 91426c9f71e8c41bda790ec9c77f8ba47345cb0c /usr.sbin/ngctl | |
| parent | c886a5d4d2b2a8c267ee2340db8fa477d1f64ff2 (diff) | |
Notes
Diffstat (limited to 'usr.sbin/ngctl')
| -rw-r--r-- | usr.sbin/ngctl/Makefile | 2 | ||||
| -rw-r--r-- | usr.sbin/ngctl/main.c | 1 | ||||
| -rw-r--r-- | usr.sbin/ngctl/ngctl.h | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/ngctl/Makefile b/usr.sbin/ngctl/Makefile index 468a17cffe22..d8dee7c6a9c1 100644 --- a/usr.sbin/ngctl/Makefile +++ b/usr.sbin/ngctl/Makefile @@ -2,7 +2,7 @@ # $Whistle: Makefile,v 1.3 1999/01/16 00:10:11 archie Exp $ PROG= ngctl -SRCS= main.c mkpeer.c connect.c name.c show.c list.c \ +SRCS= main.c mkpeer.c config.c connect.c name.c show.c list.c \ msg.c debug.c shutdown.c rmhook.c status.c types.c MAN8= ngctl.8 DPADD+= ${LIBNETGRAPH} diff --git a/usr.sbin/ngctl/main.c b/usr.sbin/ngctl/main.c index 67ffde3383c2..9668fbe603c0 100644 --- a/usr.sbin/ngctl/main.c +++ b/usr.sbin/ngctl/main.c @@ -59,6 +59,7 @@ static int QuitCmd(int ac, char **av); /* List of commands */ static const struct ngcmd *const cmds[] = { + &config_cmd, &connect_cmd, &debug_cmd, &help_cmd, diff --git a/usr.sbin/ngctl/ngctl.h b/usr.sbin/ngctl/ngctl.h index b66e74b78b99..56d0a3daaa35 100644 --- a/usr.sbin/ngctl/ngctl.h +++ b/usr.sbin/ngctl/ngctl.h @@ -75,6 +75,7 @@ struct ngcmd { #define CMDRTN_QUIT 3 /* Available commands */ +extern const struct ngcmd config_cmd; extern const struct ngcmd connect_cmd; extern const struct ngcmd debug_cmd; extern const struct ngcmd help_cmd; |
