1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-26 09:29:01 +00:00

Applied a patch by Kris Katterjohn which makes 14 functions static

This commit is contained in:
fyodor
2006-08-29 04:03:03 +00:00
parent fb68addf2a
commit 2140dfb00f
7 changed files with 69 additions and 66 deletions

View File

@@ -128,7 +128,7 @@ static inline int MACTableHash(int prefix, int table_capacity) {
return prefix % table_capacity;
}
void mac_prefix_init() {
static void mac_prefix_init() {
static int initialized = 0;
if (initialized) return;
initialized = 1;