From d1ead84d08aeebdc2a8a7d6d124692b44613626d Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Mon, 20 Oct 2008 05:19:15 +0000 Subject: [PATCH] AIX fix --- useradmin/user-lib.pl | 4 ---- 1 file changed, 4 deletions(-) diff --git a/useradmin/user-lib.pl b/useradmin/user-lib.pl index 1c2c9cd31..a8a661d2e 100644 --- a/useradmin/user-lib.pl +++ b/useradmin/user-lib.pl @@ -438,10 +438,6 @@ else { # update AIX security user file as well.. # use chuser command because it's easier than working # with the complexity issues of the file. - $_[1]->{'expire'} = '' if (! $_[1]->{'expire'}); - $_[1]->{'min'} = '' if (! $_[1]->{'min'}); - $_[1]->{'max'} = '' if (! $_[1]->{'max'}); - $_[1]->{'warn'} = '' if (! $_[1]->{'warn'}); &system_logged("chuser expires=$_[1]->{'expire'} minage=$_[1]->{'min'} maxage=$_[1]->{'max'} pwdwarntime=$_[1]->{'warn'} $_[1]->{'user'}"); } }