From a2bedd79e76e85c1ee19f3158c149fdaa85e5e92 Mon Sep 17 00:00:00 2001 From: Stig Sandbeck Mathisen Date: Sat, 4 Oct 2014 20:30:29 +0200 Subject: [PATCH] Fix syntax error in string concatenation --- plugins/apache/apache_byprojects/byprojects_bandwidth | 2 +- plugins/apache/apache_byprojects/byprojects_inout_bandwidth | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/apache/apache_byprojects/byprojects_bandwidth b/plugins/apache/apache_byprojects/byprojects_bandwidth index d5f6e841..8370cf79 100644 --- a/plugins/apache/apache_byprojects/byprojects_bandwidth +++ b/plugins/apache/apache_byprojects/byprojects_bandwidth @@ -63,7 +63,7 @@ if(defined($ARGV[0])) { print "graph_total Total\n"; print "graph_vlabel Bits\n"; print "graph_category $server\n"; - print "graph_info This graph show $server total bandwidth used by various "\ + print "graph_info This graph show $server total bandwidth used by various " . "projects.\n"; while ((my $project, my @files) = each(%logs)) { print $project.".label $project\n"; diff --git a/plugins/apache/apache_byprojects/byprojects_inout_bandwidth b/plugins/apache/apache_byprojects/byprojects_inout_bandwidth index e92800cb..29dbecf9 100644 --- a/plugins/apache/apache_byprojects/byprojects_inout_bandwidth +++ b/plugins/apache/apache_byprojects/byprojects_inout_bandwidth @@ -60,7 +60,7 @@ if(defined($ARGV[0])) { print "graph_args --base 1000\n"; print "graph_vlabel bits per \${graph_period} in (-) / out (+)\n"; print "graph_category $server\n"; - print "graph_info This graph show $server in/out bandwidth used by various"\ + print "graph_info This graph show $server in/out bandwidth used by various" . " projects.\n"; while ((my $project, my @files) = each(%logs)) { print "i".$project.".label $project\n";