Browse Source

static'ize graphite global vars

pull/101/head
Richard Fuchs 11 years ago
parent
commit
965d989c93
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      daemon/graphite.c

+ 5
- 5
daemon/graphite.c View File

@ -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) {


Loading…
Cancel
Save