From 7e61778aa0cdb5bc1dabf73a701b35cb7e855735 Mon Sep 17 00:00:00 2001 From: Tom Laermans Date: Mon, 21 Jun 2010 17:21:27 +0000 Subject: [PATCH] remove wrong fixme comment git-svn-id: http://www.observium.org/svn/observer/trunk@1240 61d68cd4-352d-0410-923a-c4978735b2b8 --- includes/polling/fanspeeds.inc.php | 1 - 1 file changed, 1 deletion(-) diff --git a/includes/polling/fanspeeds.inc.php b/includes/polling/fanspeeds.inc.php index 894cdc54d..cd6b1bee9 100755 --- a/includes/polling/fanspeeds.inc.php +++ b/includes/polling/fanspeeds.inc.php @@ -9,7 +9,6 @@ while($fanspeed = mysql_fetch_array($fan_data)) { $fan_cmd = $config['snmpget'] . " -m SNMPv2-MIB -O Uqnv -" . $device['snmpver'] . " -c " . $device['community'] . " " . $device['hostname'].":".$device['port'] . " " . $fanspeed['fan_oid'] . "|grep -v \"No Such Instance\""; $fan = trim(str_replace("\"", "", shell_exec($fan_cmd))); if ($fanspeed['fan_precision']) { $fan = $fan / $fanspeed['fan_precision']; } - #FIXME also divide the limit here $fanrrd = $config['rrd_dir'] . "/" . $device['hostname'] . "/" . safename("fan-" . $fanspeed['fan_descr'] . ".rrd");