Whamcloud - gitweb
LU-16335 test: add fail_abort_cleanup()
[fs/lustre-release.git] / lustre / scripts / ksocklnd-config
index c06e822..b716cfd 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 me="${0##*/}"
 
@@ -10,7 +10,7 @@ cidr2mask() {
 
        for ((i=0;i<4;i+=1)); do
                if [ $i -lt $full_octets ]; then
-                       mask+=255
+                       mask+=255
                elif [ $i -eq $full_octets ]; then
                        mask+=$((256 - 2**(8-$partial_octet)))
                else