eapol: Make global variables static

This commit is contained in:
Marcel Holtmann 2019-08-15 19:32:37 +02:00
parent 884dcbab92
commit f41d85112e
1 changed files with 6 additions and 6 deletions

View File

@ -41,15 +41,15 @@
#include "src/watchlist.h"
#include "src/erp.h"
struct l_queue *state_machines;
struct l_queue *preauths;
struct watchlist frame_watches;
static struct l_queue *state_machines;
static struct l_queue *preauths;
static struct watchlist frame_watches;
static uint32_t eapol_4way_handshake_time = 2;
eapol_rekey_offload_func_t rekey_offload = NULL;
static eapol_rekey_offload_func_t rekey_offload = NULL;
eapol_tx_packet_func_t tx_packet = NULL;
void *tx_user_data;
static eapol_tx_packet_func_t tx_packet = NULL;
static void *tx_user_data;
#define VERIFY_IS_ZERO(field) \
do { \