From 647d0cdbb1865b471093bf014cc6b38cd3b460e1 Mon Sep 17 00:00:00 2001 From: millert <> Date: Mon, 7 Jul 2003 15:35:55 +0000 Subject: [PATCH] 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. --- src/etc/security | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/security b/src/etc/security index 573fc1ad..db773bee 100644 --- a/src/etc/security +++ b/src/etc/security @@ -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