From 3ac63d663bc639768cae2c406ba1bbda880a8c47 Mon Sep 17 00:00:00 2001 From: Greg Sabino Mullane Date: Tue, 25 Jan 2011 00:12:39 -0500 Subject: [PATCH] In message string, $ should be $1 --- check_postgres.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/check_postgres.pl b/check_postgres.pl index 5243dfc06..c5348156e 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -211,7 +211,7 @@ our %msg = ( 'range-warnbigsize' => q{The 'warning' option ($1 bytes) cannot be larger than the 'critical' option ($2 bytes)}, 'range-warnbigtime' => q{The 'warning' option ($1 s) cannot be larger than the 'critical' option ($2 s)}, 'range-warnsmall' => q{The 'warning' option cannot be less than the 'critical' option}, - 'range-nointfortime' => q{Invalid argument for '$' options: must be an integer, time or integer for time}, + 'range-nointfortime' => q{Invalid argument for '$1' options: must be an integer, time or integer for time}, 'relsize-msg-ind' => q{largest index is "$1": $2}, 'relsize-msg-reli' => q{largest relation is index "$1": $2}, 'relsize-msg-relt' => q{largest relation is table "$1": $2}, @@ -425,7 +425,7 @@ our %msg = ( 'range-warnbigsize' => q{L'option warning ($1 octets) ne peut pas être plus grand que l'option critical ($2 octets)}, 'range-warnbigtime' => q{L'option warning ($1 s) ne peut pas être plus grand que l'option critical ($2 s)}, 'range-warnsmall' => q{L'option warningne peut pas être plus petit que l'option critical}, -'range-nointfortime' => q{Invalid argument for '$' options: must be an integer, time or integer for time}, +'range-nointfortime' => q{Invalid argument for '$1' options: must be an integer, time or integer for time}, 'relsize-msg-ind' => q{le plus gros index est « $1 » : $2}, 'relsize-msg-reli' => q{la plus grosse relation est l'index « $1 » : $2}, 'relsize-msg-relt' => q{la plus grosse relation est la table « $1 » : $2}, -- 2.39.5