Commit de74c07b authored by Antonin Décimo's avatar Antonin Décimo Committed by Juliusz Chroboczek

Mark old_if array as static.

parent 2fbad6f0
...@@ -95,9 +95,9 @@ struct old_if { ...@@ -95,9 +95,9 @@ struct old_if {
int rp_filter; int rp_filter;
}; };
struct old_if *old_if = NULL; static struct old_if *old_if = NULL;
int num_old_if = 0; static int num_old_if = 0;
int max_old_if = 0; static int max_old_if = 0;
static int dgram_socket = -1; static int dgram_socket = -1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment