From ba8f3ee996a17e7cd022ad823fb08e4e2f72ee3c Mon Sep 17 00:00:00 2001 From: millert <> Date: Tue, 1 Jul 2003 22:12:50 +0000 Subject: [PATCH] We need the "/ 10" in the group writability check after all; marc@ --- src/etc/security | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/security b/src/etc/security index ede7aa84..9e8b8c46 100644 --- a/src/etc/security +++ b/src/etc/security @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: security,v 1.61 2003/07/01 21:52:39 millert Exp $ +# $OpenBSD: security,v 1.62 2003/07/01 22:12:50 millert Exp $ # from: @(#)security 8.1 (Berkeley) 6/9/93 # @@ -138,7 +138,7 @@ for i in $list ; do if [ -s $i ] ; then awk '{ if ($1 == "umask") { - if ($2 % 100 ~ /^[0145]/) + if ($2 % 100 / 10 ~ /^[0145]/) print "Root umask is group writable"; if ($2 % 10 ~ /^[0145]/) print "Root umask is other writable";