diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-04-03 22:34:18 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-04-03 22:34:18 +0200 |
commit | c17faa4b100673e4169ae585df755d6e08eebfee (patch) | |
tree | f95bcea3e588a4c92771fc9ea6bf0e6261f98689 /lib/if_rmap.c | |
parent | Merge pull request #4070 from donaldsharp/static_fixup (diff) | |
download | frr-c17faa4b100673e4169ae585df755d6e08eebfee.tar.xz frr-c17faa4b100673e4169ae585df755d6e08eebfee.zip |
lib: reduce exported var symbols
Don't need these in our DSO tables
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'lib/if_rmap.c')
-rw-r--r-- | lib/if_rmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/if_rmap.c b/lib/if_rmap.c index 955c1417c..d8236b6b2 100644 --- a/lib/if_rmap.c +++ b/lib/if_rmap.c @@ -31,7 +31,7 @@ DEFINE_MTYPE_STATIC(LIB, IF_RMAP_CTX_NAME, "Interface route map container name") DEFINE_MTYPE_STATIC(LIB, IF_RMAP, "Interface route map") DEFINE_MTYPE_STATIC(LIB, IF_RMAP_NAME, "I.f. route map name") -struct list *if_rmap_ctx_list; +static struct list *if_rmap_ctx_list; static struct if_rmap *if_rmap_new(void) { |