diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2003-06-08 22:39:20 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2003-06-08 22:39:20 +0000 |
commit | 7da0b3522a2cb3515e84733b3d3a357c2728b069 (patch) | |
tree | 885d8299632f6b0b43e7ce87bb3baad1936f7bfb /configure.in | |
parent | e0ba1803822af74bdd85c1a0f413b56ec6225342 (diff) | |
download | monitoring-plugins-7da0b3522a2cb3515e84733b3d3a357c2728b069.tar.gz |
Fixed quoting on SWAP_FORMAT
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@540 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 9c4265f8..2784b2d7 100644 --- a/configure.in +++ b/configure.in @@ -1308,12 +1308,12 @@ then elif [$PATH_TO_SWAP -l 2>/dev/null | egrep -i "^swapfile +dev +swaplo +blocks +free" >/dev/null] then - ac_cv_swap_format=["%*s %*[[0-9,-]] %*d %d %d"] + ac_cv_swap_format=["%*s %*[0-9,-] %*d %d %d"] AC_MSG_RESULT([using Solaris format swap]) elif [$PATH_TO_SWAP -l 2>/dev/null | egrep -i "^path +dev +swaplo +blocks +free" >/dev/null] then - ac_cv_swap_format=["%*s %*[[0-9,-]] %*d %d %d"] + ac_cv_swap_format=["%*s %*[0-9,-] %*d %d %d"] AC_MSG_RESULT([using Unixware format swap]) fi |