=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/etc/Attic/security,v retrieving revision 1.5 retrieving revision 1.6 diff -c -r1.5 -r1.6 *** src/etc/Attic/security 1996/07/12 00:06:50 1.5 --- src/etc/Attic/security 1996/07/19 16:55:51 1.6 *************** *** 1,6 **** #!/bin/sh - # ! # $OpenBSD: security,v 1.5 1996/07/12 00:06:50 deraadt Exp $ # PATH=/sbin:/usr/sbin:/bin:/usr/bin --- 1,6 ---- #!/bin/sh - # ! # $OpenBSD: security,v 1.6 1996/07/19 16:55:51 millert Exp $ # PATH=/sbin:/usr/sbin:/bin:/usr/bin *************** *** 224,234 **** # Files that should not have + signs. list="/etc/hosts.equiv /etc/shosts.equiv /etc/hosts.lpd" for f in $list ; do ! if [ -f $f ] ; then awk '{ ! if ($0 ~ /^+@.*$/ ) next; ! if ($0 ~ /^+.*$/ ) printf("\nPlus sign in %s file.\n", FILENAME); }' $f fi --- 224,234 ---- # Files that should not have + signs. list="/etc/hosts.equiv /etc/shosts.equiv /etc/hosts.lpd" for f in $list ; do ! if [ -s $f ] ; then awk '{ ! if ($0 ~ /^\+@.*$/ ) next; ! if ($0 ~ /^\+.*$/ ) printf("\nPlus sign in %s file.\n", FILENAME); }' $f fi