Browse Source

when testing passwd(5) expire field, force its value to an int before

checking for non-zero since an empty field is equivalent to 0.
Problem noted by Graeme Lee.
OPENBSD_3_4
millert 21 years ago
parent
commit
647d0cdbb1
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/etc/security

+ 2
- 2
src/etc/security View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $OpenBSD: security,v 1.63 2003/07/03 23:05:42 millert Exp $
# $OpenBSD: security,v 1.64 2003/07/07 15:35:55 millert Exp $
# from: @(#)security 8.1 (Berkeley) 6/9/93
#
@ -52,7 +52,7 @@ awk -F: '{
printf("Login %s has a negative user ID.\n", $1);
if ($4 < 0)
printf("Login %s has a negative group ID.\n", $1);
if ($7 != 0 && system("test "$7" -lt `date +%s`") == 0)
if (int($7) != 0 && system("test "$7" -lt `date +%s`") == 0)
printf("Login %s has expired.\n", $1);
}' < $MP > $OUTPUT
if [ -s $OUTPUT ] ; then


Loading…
Cancel
Save