From f34d2f9c017703d13d7adacd2e9065b201d99d95 Mon Sep 17 00:00:00 2001 From: ats Date: Sat, 14 Jan 1995 13:23:50 +0000 Subject: Fix a bug, that someone has introduced into /etc/security. It has no longer found SUID files, only SGID files. The find has missed some parantheses. --- etc/security | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'etc/security') diff --git a/etc/security b/etc/security index 37d7d6e..02432d4 100644 --- a/etc/security +++ b/etc/security @@ -1,7 +1,7 @@ #!/bin/sh - # # @(#)security 5.3 (Berkeley) 5/28/91 -# $Id: security,v 1.5 1993/12/15 06:42:01 rich Exp $ +# $Id: security,v 1.6 1994/01/22 10:54:13 rgrimes Exp $ # PATH=/sbin:/bin:/usr/bin @@ -24,7 +24,7 @@ set $MP while test $# -ge 1; do mount=$1 shift - find $mount -xdev -perm -u+s -or -perm -g+s | sort + find $mount -xdev \( -perm -u+s -or -perm -g+s \) | sort done | xargs -n 20 ls -lgTd > $TMP if cmp $LOG/setuid.today $TMP >/dev/null; then :; else -- cgit v1.1