svn commit: r367494 - head/sys/net

Mitchell Horne mhorne at FreeBSD.org
Sun Nov 8 19:02:22 UTC 2020


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;


More information about the svn-src-all mailing list