Author: mhorne
Date: Sun Nov  8 19:02:22 2020
New Revision: 367494
URL: https://svnweb.freebsd.org/changeset/base/367494

Log:
  Fix definition of rn_addmask()
  
  Add the missing static keyword present in the declaration.
  
  Reviewed by:  melifaro
  Sponsored by: NetApp, Inc.
  Sponsored by: Klara, Inc.
  Differential Revision:        https://reviews.freebsd.org/D27024

Modified:
  head/sys/net/radix.c

Modified: head/sys/net/radix.c
==============================================================================
--- head/sys/net/radix.c        Sun Nov  8 18:49:23 2020        (r367493)
+++ head/sys/net/radix.c        Sun Nov  8 19:02:22 2020        (r367494)
@@ -483,7 +483,7 @@ on1:
        return (tt);
 }
 
-struct radix_node *
+static struct radix_node *
 rn_addmask(void *n_arg, struct radix_mask_head *maskhead, int search, int skip)
 {
        unsigned char *netmask = n_arg;
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to