remove a stupid -Wstrict-prototype warning by making the hash function
authortedu <tedu@openbsd.org>
Thu, 22 Jan 2015 22:09:39 +0000 (22:09 +0000)
committertedu <tedu@openbsd.org>
Thu, 22 Jan 2015 22:09:39 +0000 (22:09 +0000)
static. noticed by florian riehm

usr.sbin/ospf6d/lsupdate.c
usr.sbin/ospfd/lsupdate.c

index 198309c..c635cf3 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: lsupdate.c,v 1.11 2014/12/18 19:27:04 tedu Exp $ */
+/*     $OpenBSD: lsupdate.c,v 1.12 2015/01/22 22:09:39 tedu Exp $ */
 
 /*
  * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org>
@@ -564,7 +564,7 @@ lsa_cache_init(u_int32_t hashsize)
        lsacache.hashmask = hs - 1;
 }
 
-uint32_t
+static uint32_t
 lsa_hash_hdr(const struct lsa_hdr *hdr)
 {
        return SipHash24(&lsacachekey, hdr, sizeof(*hdr));
index 41a10a6..3270865 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: lsupdate.c,v 1.42 2014/12/18 19:26:46 tedu Exp $ */
+/*     $OpenBSD: lsupdate.c,v 1.43 2015/01/22 22:09:39 tedu Exp $ */
 
 /*
  * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org>
@@ -550,7 +550,7 @@ lsa_cache_init(u_int32_t hashsize)
        lsacache.hashmask = hs - 1;
 }
 
-uint32_t
+static uint32_t
 lsa_hash_hdr(const struct lsa_hdr *hdr)
 {
        return SipHash24(&lsacachekey, hdr, sizeof(*hdr));