From 48a7c6ab289d3d87383e2b6438c66dec1ccbf778 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Sat, 13 May 2000 19:31:35 +0000 Subject: [PATCH] Silence IRIX warning: "hmac_link.c", line 92: remark(1692): prototyped function redeclared without prototype dst_s_hmacmd5_init() { --- lib/dns/sec/dst/hmac_link.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/dns/sec/dst/hmac_link.c b/lib/dns/sec/dst/hmac_link.c index 0f769d2acb..f6881de157 100644 --- a/lib/dns/sec/dst/hmac_link.c +++ b/lib/dns/sec/dst/hmac_link.c @@ -19,7 +19,7 @@ /* * Principal Author: Brian Wellington - * $Id: hmac_link.c,v 1.23 2000/05/08 14:37:07 tale Exp $ + * $Id: hmac_link.c,v 1.24 2000/05/13 19:31:35 tale Exp $ */ #include @@ -89,7 +89,7 @@ dst_hmacmd5_from_file(dst_key_t *key, const isc_uint16_t id, isc_mem_t *mctx); * Sets up function pointers for HMAC-MD5 related functions */ void -dst_s_hmacmd5_init() { +dst_s_hmacmd5_init(void) { REQUIRE(dst_t_func[DST_ALG_HMACMD5] == NULL); dst_t_func[DST_ALG_HMACMD5] = &hmacmd5_functions; memset(&hmacmd5_functions, 0, sizeof(struct dst_func));