From: Sebastian Harl Date: Sun, 20 Jan 2008 22:11:53 +0000 (+0100) Subject: network plugin: Made network_receive() static. X-Git-Tag: collectd-4.1.6^0 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=2a7cae256f87f851aeaa0936a3e177bc11ee58f9;p=collectd.git network plugin: Made network_receive() static. This function is not exported to any other module. Signed-off-by: Sebastian Harl Signed-off-by: Florian Forster --- diff --git a/src/network.c b/src/network.c index a426214d..19344312 100644 --- a/src/network.c +++ b/src/network.c @@ -989,7 +989,7 @@ static int network_add_sending_socket (const char *node, const char *service) return (0); } /* int network_get_listen_socket */ -int network_receive (void) +static int network_receive (void) { char buffer[BUFF_SIZE]; int buffer_len;