mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
Print yyyy/mm/dd in /var/log/adduser, instead of yy/mm/dd
Submitted by: Peter Jeremy <peter.jeremy@alcatel.com.au>
This commit is contained in:
parent
b8cf6ea776
commit
47bc1e1873
1 changed files with 2 additions and 1 deletions
|
|
@ -24,7 +24,7 @@
|
|||
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
# SUCH DAMAGE.
|
||||
#
|
||||
# $Id: adduser.perl,v 1.40 1998/06/07 18:38:32 wosch Exp $
|
||||
# $Id: adduser.perl,v 1.41 1998/08/17 18:50:29 wosch Exp $
|
||||
|
||||
|
||||
# read variables
|
||||
|
|
@ -895,6 +895,7 @@ sub adduser_log {
|
|||
return 1 if $logfile eq "no";
|
||||
|
||||
local($sec, $min, $hour, $mday, $mon, $year) = localtime;
|
||||
$year += 1900;
|
||||
$mon++;
|
||||
|
||||
foreach $e ('sec', 'min', 'hour', 'mday', 'mon', 'year') {
|
||||
|
|
|
|||
Loading…
Reference in a new issue