aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2006-11-08 17:57:01 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2006-11-08 17:57:01 +0000
commitaec17a22849a53b80503524080f492a82f831fb8 (patch)
tree65a83dd696e217a9e01825f3a8409c06232ad029 /etc
parentb07f8e83e552f8971c52d5879728c365f3da6a80 (diff)
downloadmailfromd-aec17a22849a53b80503524080f492a82f831fb8.tar.gz
mailfromd-aec17a22849a53b80503524080f492a82f831fb8.tar.bz2
(mailfromd_stop): Fix arithmetical expression syntax
git-svn-id: file:///svnroot/mailfromd/trunk@811 7a8a7f39-df28-0410-adc6-e0d955640f24
Diffstat (limited to 'etc')
-rwxr-xr-xetc/rc.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.in b/etc/rc.in
index 38aa37fd..94e2ebba 100755
--- a/etc/rc.in
+++ b/etc/rc.in
@@ -50,7 +50,7 @@ mailfromd_stop() {
N=0
while [ -r $PIDFILE ]
do
- N=$((N+1))
+ N=$(($N + 1))
if [ $N -gt 5 ]; then
break
fi

Return to:

Send suggestions and report system problems to the System administrator.