diff options
author | Jehan-Guillaume (ioguix) de Rorthais | 2010-08-11 17:55:27 +0000 |
---|---|---|
committer | Greg Sabino Mullane | 2010-08-11 17:55:27 +0000 |
commit | da6cf704d72659787018acca1b1543fbc494e110 (patch) | |
tree | 3143b2a5fe8a09b7c9892dc266da3a64ba2bd959 /check_postgres.pl | |
parent | ea4497b5dc24b66955fb75fe725bfecbf5954ed4 (diff) |
Separate perfdata with spaces, per spec.
Diffstat (limited to 'check_postgres.pl')
-rwxr-xr-x | check_postgres.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/check_postgres.pl b/check_postgres.pl index 8db22f9f9..d7a6a4f2b 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -1177,7 +1177,7 @@ sub finishup { if ($opt{showperf}) { print '| '; for (sort keys %$info) { - my $m = sprintf '%s ', join $SEP => map { $_->[1] } @{$info->{$_}}; + my $m = sprintf '%s ', join ' ' => map { $_->[1] } @{$info->{$_}}; if ($VERBOSE) { $m =~ s/ /\n/g; } |