From: <buc...@us...> - 2009-01-09 13:08:25
|
Revision: 112 http://devmon.svn.sourceforge.net/devmon/?rev=112&view=rev Author: buchanmilne Date: 2009-01-09 13:08:17 +0000 (Fri, 09 Jan 2009) Log Message: ----------- Strip spaces off names of repeaters before creating rrd section of message Modified Paths: -------------- trunk/modules/dm_tests.pm Modified: trunk/modules/dm_tests.pm =================================================================== --- trunk/modules/dm_tests.pm 2009-01-05 16:20:08 UTC (rev 111) +++ trunk/modules/dm_tests.pm 2009-01-09 13:08:17 UTC (rev 112) @@ -2017,6 +2017,7 @@ for my $leaf (@{$rrd{$name}{'leaves'}}) { my $pri_val = $oids->{$pri}{'val'}{$leaf}; + $pri_val =~ s/\s*//g; $temp_data = ''; for my $oid (@{$rrd{$name}{'oids'}}) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |