From: Florian Forster Date: Wed, 8 Dec 2010 12:23:41 +0000 (+0100) Subject: unixsock plugin: Remove the "GETTHRESHOLD" command. X-Git-Tag: collectd-5.0.0-beta1~9 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=c60c6a91e108959e60dd093d398fccee30bdc6c8 unixsock plugin: Remove the "GETTHRESHOLD" command. --- diff --git a/src/unixsock.c b/src/unixsock.c index 6de13956..d729477b 100644 --- a/src/unixsock.c +++ b/src/unixsock.c @@ -26,7 +26,6 @@ #include "utils_cmd_flush.h" #include "utils_cmd_getval.h" -#include "utils_cmd_getthreshold.h" #include "utils_cmd_listval.h" #include "utils_cmd_putval.h" #include "utils_cmd_putnotif.h" @@ -275,10 +274,6 @@ static void *us_handle_client (void *arg) { handle_getval (fhout, buffer); } - else if (strcasecmp (fields[0], "getthreshold") == 0) - { - handle_getthreshold (fhout, buffer); - } else if (strcasecmp (fields[0], "putval") == 0) { handle_putval (fhout, buffer);