diff options
author | Stephen Worley <sworley@cumulusnetworks.com> | 2018-07-26 20:34:28 +0200 |
---|---|---|
committer | Stephen Worley <sworley@cumulusnetworks.com> | 2018-07-26 20:34:28 +0200 |
commit | 29bf7b0b67d6ab8ed567f983834e7259082f8434 (patch) | |
tree | 8af4e0eab9d5ad094532c8c7eb8d5f26eef5dc01 /zebra/kernel_netlink.c | |
parent | zebra: Make fuzzer code use default netlink socket (diff) | |
download | frr-29bf7b0b67d6ab8ed567f983834e7259082f8434.tar.xz frr-29bf7b0b67d6ab8ed567f983834e7259082f8434.zip |
Style, don't initialize netlink_read flag
Signed-off-by: Stephen Worley <sworley@cumulusnetworks.com>
Diffstat (limited to 'zebra/kernel_netlink.c')
-rw-r--r-- | zebra/kernel_netlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/kernel_netlink.c b/zebra/kernel_netlink.c index 483aab027..bc2ed7f8f 100644 --- a/zebra/kernel_netlink.c +++ b/zebra/kernel_netlink.c @@ -308,7 +308,7 @@ static unsigned int netlink_file_counter = 1; static char netlink_fuzz_file[MAXPATHLEN] = ""; /* Flag for whether to read from file or not */ -bool netlink_read = false; +bool netlink_read; /** * netlink_read_init() - Starts the message parser |