From d630170ae867239b6898e3330d20f77d620a9c96 Mon Sep 17 00:00:00 2001 From: Guillaume Nault Date: Thu, 6 Jun 2013 14:25:00 +0200 Subject: l2tp: Define conf_port as static This variable doesn't need to be visible outside of its compilation unit. Signed-off-by: Guillaume Nault --- accel-pppd/ctrl/l2tp/l2tp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accel-pppd/ctrl/l2tp/l2tp.c b/accel-pppd/ctrl/l2tp/l2tp.c index f109fbc9..8f763883 100644 --- a/accel-pppd/ctrl/l2tp/l2tp.c +++ b/accel-pppd/ctrl/l2tp/l2tp.c @@ -48,10 +48,10 @@ #define STATE_FIN 9 #define STATE_CLOSE 0 -int conf_port = L2TP_PORT; int conf_verbose = 0; int conf_hide_avps = 0; int conf_avp_permissive = 0; +static int conf_port = L2TP_PORT; static int conf_timeout = 60; static int conf_rtimeout = 5; static int conf_retransmit = 5; -- cgit v1.2.3