From: Fritz D. Ansel Date: Thu, 12 Aug 2021 12:05:09 +0000 (+0200) Subject: xinetd: fix syntax violation X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=afdc1c2a7517f701d75bf27a34479ec84d0be0fb;p=feed%2Fpackages.git xinetd: fix syntax violation see https://github.com/openwrt/packages/pull/16318#discussion_r687481110 Signed-off-by: Fritz D. Ansel --- diff --git a/net/xinetd/files/xinetd.init b/net/xinetd/files/xinetd.init index 699d6fa583..9e3872fce2 100644 --- a/net/xinetd/files/xinetd.init +++ b/net/xinetd/files/xinetd.init @@ -71,7 +71,7 @@ config_cb() { local value="$2" # write out last list option if new list starts - if [ "$ListName" != "" -a "$ListName" != "$name" ]; then + if [ -n "$ListName" ] && [ "$ListName" != "$name" ]; then echo -e "\t$ListName = $ListVals" >> $GENERATED_CONF_FILE