diff options
| author | Sheldon Hearn <sheldonh@FreeBSD.org> | 1999-10-06 10:29:33 +0000 |
|---|---|---|
| committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 1999-10-06 10:29:33 +0000 |
| commit | a0468d95ed518f3b194f2fd39734bfdd3d38f908 (patch) | |
| tree | da9c2a6a5045cb20fdcec1b93694845739b2cf7e | |
| parent | 04bf7dcfeb499717ec2d29e21fed8987fc740f66 (diff) | |
Notes
| -rw-r--r-- | etc/security | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/security b/etc/security index ac70d0ca0250..7570cd1e32c2 100644 --- a/etc/security +++ b/etc/security @@ -55,7 +55,7 @@ awk -F: '$3==0 {print $1,$3}' /etc/master.passwd separator echo "checking for passwordless accounts:" -awk -F: '$1 !~ /^\+/ && $2=="" {print $0}' /etc/master.passwd +awk -F: 'NF > 1 && $1 !~ /^[#+]/ && $2=="" {print $0}' /etc/master.passwd # Show denied packets # |
