From 473642c0ebc2d1939206505c77724fb88cdb8ffc Mon Sep 17 00:00:00 2001 From: rpe <> Date: Sun, 7 May 2017 09:40:15 +0000 Subject: [PATCH] Change test from [] to [[]] and simplify pattern. OK tb@, krw@ (for [[]]) Feedback and OK halex@ --- src/etc/netstart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/netstart b/src/etc/netstart index 15ee069c..74c9f376 100644 --- a/src/etc/netstart +++ b/src/etc/netstart @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: netstart,v 1.182 2017/05/07 07:55:17 rpe Exp $ +# $OpenBSD: netstart,v 1.183 2017/05/07 09:40:15 rpe Exp $ # Turn off Strict Bourne shell mode. set +o sh @@ -96,7 +96,7 @@ ifstart() { # Not using stat(1), we can't rely on having /usr yet. set -A _stat -- $(ls -nL $_file) - if [ "${_stat[0]#???????} ${_stat[2]} ${_stat[3]}" != "--- 0 0" ]; then + if [[ "${_stat[0]}${_stat[2]}${_stat[3]}" != *---00 ]]; then echo "WARNING: $_file is insecure, fixing permissions" chmod -LR o-rwx $_file chown -LR root.wheel $_file