diff options
author | des <des@FreeBSD.org> | 1998-08-16 10:38:02 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 1998-08-16 10:38:02 +0000 |
commit | 7259d16a8d45a6fbfd72c2d5c19279873bd1dd05 (patch) | |
tree | 46bf553cd0fa79baeffdd0481c6f41722b59f4ef | |
parent | 6dec0a8cf50212c8791c95799d7be7d7b25abc29 (diff) | |
download | FreeBSD-src-7259d16a8d45a6fbfd72c2d5c19279873bd1dd05.zip FreeBSD-src-7259d16a8d45a6fbfd72c2d5c19279873bd1dd05.tar.gz |
Fix typo in previous commit.
PR: 7621
Submitted by: Mark Huizer
-rw-r--r-- | etc/security | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/security b/etc/security index ec62a55..bf0094e 100644 --- a/etc/security +++ b/etc/security @@ -1,7 +1,7 @@ #!/bin/sh - # # @(#)security 5.3 (Berkeley) 5/28/91 -# $Id: security,v 1.25 1998/07/08 22:42:08 alex Exp $ +# $Id: security,v 1.26 1998/08/11 08:48:54 des Exp $ # PATH=/sbin:/bin:/usr/bin LC_ALL=C; export LC_ALL @@ -53,7 +53,7 @@ echo "checking for uids of 0:" awk -F: '$3==0 {print $1,$3}' /etc/master.passwd separator -echo "checking for paswordless accounts:" +echo "checking for passwordless accounts:" awk -F: '$2=="" {print $0}' /etc/master.passwd # show denied packets |