From 402016650a60b73c97227b0c067c2903ec98d903 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9A=D0=BE=D1=80=D0=BE?= =?UTF-8?q?=D1=82=D1=87=D0=B5=D0=BD=D0=BA=D0=BE?= Date: Fri, 12 Aug 2022 12:49:49 +0300 Subject: [PATCH] Fixed bug: https://github.com/xelerance/xl2tpd/issues/243 --- xl2tpd-control.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xl2tpd-control.c b/xl2tpd-control.c index a2dcfc31..0863404f 100644 --- a/xl2tpd-control.c +++ b/xl2tpd-control.c @@ -83,7 +83,9 @@ struct command_t commands[] = { {"available", &command_available, TUNNEL_NOT_REQUIRED}, {"add-lns", &command_add_lns, TUNNEL_REQUIRED}, {"status-lns", &command_status_lns, TUNNEL_REQUIRED}, - {"remove-lns", &command_remove_lns, TUNNEL_REQUIRED} + {"remove-lns", &command_remove_lns, TUNNEL_REQUIRED}, + + {NULL, NULL, TUNNEL_REQUIRED} }; void usage()