From 3963b924b219b541ac849bd547293e3e45f09f33 Mon Sep 17 00:00:00 2001 From: Matthew Fredrickson Date: Fri, 7 Jul 2006 15:36:50 +0000 Subject: [PATCH] Fix for #7378 (namespace collision) git-svn-id: https://origsvn.digium.com/svn/libpri/branches/1.2@358 2fbb986a-6c06-0410-b554-c9c1f0a7f128 --- q931.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/q931.c b/q931.c index a4a6210..da04978 100644 --- a/q931.c +++ b/q931.c @@ -43,7 +43,7 @@ struct msgtype { int mandies[MAX_MAND_IES]; }; -struct msgtype msgs[] = { +static struct msgtype msgs[] = { /* Call establishment messages */ { Q931_ALERTING, "ALERTING" }, { Q931_CALL_PROCEEDING, "CALL PROCEEDING" }, @@ -89,7 +89,7 @@ struct msgtype msgs[] = { { NATIONAL_SERVICE_ACKNOWLEDGE, "SERVICE ACKNOWLEDGE" }, }; -struct msgtype causes[] = { +static struct msgtype causes[] = { { PRI_CAUSE_UNALLOCATED, "Unallocated (unassigned) number" }, { PRI_CAUSE_NO_ROUTE_TRANSIT_NET, "No route to specified transmit network" }, { PRI_CAUSE_NO_ROUTE_DESTINATION, "No route to destination" }, @@ -136,7 +136,7 @@ struct msgtype causes[] = { { PRI_CAUSE_INTERWORKING, "Interworking, unspecified" }, }; -struct msgtype facilities[] = { +static struct msgtype facilities[] = { { PRI_NSF_SID_PREFERRED, "CPN (SID) preferred" }, { PRI_NSF_ANI_PREFERRED, "BN (ANI) preferred" }, { PRI_NSF_SID_ONLY, "CPN (SID) only" }, @@ -1907,7 +1907,7 @@ static FUNC_DUMP(dump_signal) } -struct ie ies[] = { +static struct ie ies[] = { /* Codeset 0 - Common */ { 1, NATIONAL_CHANGE_STATUS, "Change Status" }, { 0, Q931_LOCKING_SHIFT, "Locking Shift", dump_shift },