X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Funixsock.c;h=73037e49b2e2b7a05739139c92911e1d3a33734d;hb=4f9418d694d31137b11100298d8e2c18f717ccb5;hp=808ba98bae65c48f20ec970c1c930214bdb51410;hpb=d0408cb0dbef15d739a6b1cd047e9c94d7643329;p=collectd.git diff --git a/src/unixsock.c b/src/unixsock.c index 808ba98b..73037e49 100644 --- a/src/unixsock.c +++ b/src/unixsock.c @@ -289,7 +289,7 @@ static void *us_handle_client (void *arg) if (strcasecmp (fields[0], "getval") == 0) { - handle_getval (fhout, buffer); + cmd_handle_getval (fhout, buffer); } else if (strcasecmp (fields[0], "getthreshold") == 0) { @@ -297,11 +297,11 @@ static void *us_handle_client (void *arg) } else if (strcasecmp (fields[0], "putval") == 0) { - handle_putval (fhout, buffer); + cmd_handle_putval (fhout, buffer); } else if (strcasecmp (fields[0], "listval") == 0) { - handle_listval (fhout, buffer); + cmd_handle_listval (fhout, buffer); } else if (strcasecmp (fields[0], "putnotif") == 0) { @@ -309,7 +309,7 @@ static void *us_handle_client (void *arg) } else if (strcasecmp (fields[0], "flush") == 0) { - handle_flush (fhout, buffer); + cmd_handle_flush (fhout, buffer); } else {