diff options
author | Tobi Oetiker <tobi@oetiker.ch> | 2007-09-28 23:42:45 +0200 |
---|---|---|
committer | Tobi Oetiker <tobi@oetiker.ch> | 2007-09-28 23:42:45 +0200 |
commit | 2b09417b8ca76689f147f1097806af9820cfc9b8 (patch) | |
tree | cbc1ba2764f90122797ced7354fd956119eb0613 /lib/Smokeping/probes | |
parent | 397a932de585aa078c5c2a1fceae10c3e85093ee (diff) | |
download | smokeping-2b09417b8ca76689f147f1097806af9820cfc9b8.tar.gz smokeping-2b09417b8ca76689f147f1097806af9820cfc9b8.tar.xz |
the \ must stay in the string!
Diffstat (limited to 'lib/Smokeping/probes')
-rw-r--r-- | lib/Smokeping/probes/SSH.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Smokeping/probes/SSH.pm b/lib/Smokeping/probes/SSH.pm index 4bcad76..5b71e9b 100644 --- a/lib/Smokeping/probes/SSH.pm +++ b/lib/Smokeping/probes/SSH.pm @@ -136,7 +136,7 @@ sub targetvars { }, port => { _doc => "Port to use when testing the ssh connection -p I<port>", - _re => "\d+", + _re => '\d+', _example => '5000', _default => '22', }, |