From 965d989c93763e20ea85c12b074456808796eb49 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Sun, 8 Feb 2015 15:35:15 -0500 Subject: [PATCH] static'ize graphite global vars --- daemon/graphite.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/daemon/graphite.c b/daemon/graphite.c index b3637d269..5ef134387 100644 --- a/daemon/graphite.c +++ b/daemon/graphite.c @@ -13,11 +13,11 @@ #include "log.h" #include "call.h" -int graphite_sock=-1; -u_int32_t graphite_ipaddress; -int graphite_port=0; -struct callmaster* cm=0; -struct totalstats totalstats_prev; +static int graphite_sock=-1; +static u_int32_t graphite_ipaddress; +static int graphite_port=0; +static struct callmaster* cm=0; +//struct totalstats totalstats_prev; int connect_to_graphite_server(u_int32_t ipaddress, int port) {