From 4be5c040b6463b066ca5adec7a85dc6f87d9fb97 Mon Sep 17 00:00:00 2001 From: Jean-François Micouleau Date: Fri, 19 Oct 2001 17:30:05 +0000 Subject: print in a human readable format when the password expired. J.F. (This used to be commit 255b197a5c92bfc18a567613bbffb013fd0a834d) --- source3/auth/auth_sam.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/auth/auth_sam.c') diff --git a/source3/auth/auth_sam.c b/source3/auth/auth_sam.c index 26b9001bf6..a525248461 100644 --- a/source3/auth/auth_sam.c +++ b/source3/auth/auth_sam.c @@ -260,7 +260,7 @@ NTSTATUS sam_account_ok(SAM_ACCOUNT *sampass, const auth_usersupplied_info *user /* check for expired password */ if (must_change_time < time(NULL) && must_change_time != 0) { DEBUG(1,("Account for user '%s' password expired!.\n", sampass->username)); - DEBUG(1,("Password expired at '%ld' unix time.\n", (long)must_change_time)); + DEBUG(1,("Password expired at '%s' (%ld) unix time.\n", http_timestring(must_change_time), (long)must_change_time)); return NT_STATUS_PASSWORD_EXPIRED; } } -- cgit