Staticize several variables that are used exclusively in bsnmpd/main.c and
bsnmpd/trap.c This fixes several -Wmissing-variable-declaration warnings noted by clang Differential Revision: https://reviews.freebsd.org/D4718 MFC after: 1 week Reported by: Jenkins Reviewed by: araujo Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
f3b9984bce
commit
8cd5a258fb
@ -119,26 +119,30 @@ static struct lmodules modules_start = TAILQ_HEAD_INITIALIZER(modules_start);
|
||||
struct community_list community_list = TAILQ_HEAD_INITIALIZER(community_list);
|
||||
|
||||
/* list of all known USM users */
|
||||
struct usm_userlist usm_userlist = SLIST_HEAD_INITIALIZER(usm_userlist);
|
||||
static struct usm_userlist usm_userlist = SLIST_HEAD_INITIALIZER(usm_userlist);
|
||||
|
||||
/* A list of all VACM users configured, including v1, v2c and v3 */
|
||||
struct vacm_userlist vacm_userlist = SLIST_HEAD_INITIALIZER(vacm_userlist);
|
||||
static struct vacm_userlist vacm_userlist =
|
||||
SLIST_HEAD_INITIALIZER(vacm_userlist);
|
||||
|
||||
/* A list of all VACM groups */
|
||||
struct vacm_grouplist vacm_grouplist = SLIST_HEAD_INITIALIZER(vacm_grouplist);
|
||||
static struct vacm_grouplist vacm_grouplist =
|
||||
SLIST_HEAD_INITIALIZER(vacm_grouplist);
|
||||
|
||||
static struct vacm_group vacm_default_group = {
|
||||
.groupname = "",
|
||||
};
|
||||
|
||||
/* The list of configured access entries */
|
||||
struct vacm_accesslist vacm_accesslist = TAILQ_HEAD_INITIALIZER(vacm_accesslist);
|
||||
static struct vacm_accesslist vacm_accesslist =
|
||||
TAILQ_HEAD_INITIALIZER(vacm_accesslist);
|
||||
|
||||
/* The list of configured views */
|
||||
struct vacm_viewlist vacm_viewlist = SLIST_HEAD_INITIALIZER(vacm_viewlist);
|
||||
static struct vacm_viewlist vacm_viewlist =
|
||||
SLIST_HEAD_INITIALIZER(vacm_viewlist);
|
||||
|
||||
/* The list of configured contexts */
|
||||
struct vacm_contextlist vacm_contextlist =
|
||||
static struct vacm_contextlist vacm_contextlist =
|
||||
SLIST_HEAD_INITIALIZER(vacm_contextlist);
|
||||
|
||||
/* list of all installed object resources */
|
||||
|
@ -60,15 +60,15 @@
|
||||
struct trapsink_list trapsink_list = TAILQ_HEAD_INITIALIZER(trapsink_list);
|
||||
|
||||
/* List of target addresses */
|
||||
struct target_addresslist target_addresslist =
|
||||
static struct target_addresslist target_addresslist =
|
||||
SLIST_HEAD_INITIALIZER(target_addresslist);
|
||||
|
||||
/* List of target parameters */
|
||||
struct target_paramlist target_paramlist =
|
||||
static struct target_paramlist target_paramlist =
|
||||
SLIST_HEAD_INITIALIZER(target_paramlist);
|
||||
|
||||
/* List of notification targets */
|
||||
struct target_notifylist target_notifylist =
|
||||
static struct target_notifylist target_notifylist =
|
||||
SLIST_HEAD_INITIALIZER(target_notifylist);
|
||||
|
||||
static const struct asn_oid oid_begemotTrapSinkTable =
|
||||
|
Loading…
Reference in New Issue
Block a user