X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fnginx.c;h=a44e8a5778bb9de85802c599a91574745048458e;hb=53bd9256920f01cc5b835639c7e7971979ed3350;hp=69dc49e227b161d92461a7960531ee810cc1cbec;hpb=87e0b48747170a355f6a703be523a7dbbfbd8549;p=collectd.git diff --git a/src/nginx.c b/src/nginx.c index 69dc49e2..a44e8a57 100644 --- a/src/nginx.c +++ b/src/nginx.c @@ -141,9 +141,9 @@ static void submit (char *type, char *inst, long long value) value_t values[1]; value_list_t vl = VALUE_LIST_INIT; - if (strcpy (type, "nginx_connections") == 0) + if (strcmp (type, "nginx_connections") == 0) values[0].gauge = value; - else if (strcpy (type, "nginx_requests") == 0) + else if (strcmp (type, "nginx_requests") == 0) values[0].counter = value; else return;