mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[NET] Add missing newlines to net utility output (#91)
Password last set and Password changeable lines were missing newlines.
This commit is contained in:
parent
ebe9735835
commit
e3d000c30e
1 changed files with 2 additions and 0 deletions
|
@ -214,6 +214,7 @@ DisplayUser(LPWSTR lpUserName)
|
|||
PrintPaddedResourceString(IDS_USER_PW_LAST_SET, nPaddedLength);
|
||||
dwLastSet = GetTimeInSeconds() - pUserInfo->usri4_password_age;
|
||||
PrintDateTime(dwLastSet);
|
||||
ConPuts(StdOut, L"\n");
|
||||
|
||||
PrintPaddedResourceString(IDS_USER_PW_EXPIRES, nPaddedLength);
|
||||
if ((pUserInfo->usri4_flags & UF_DONT_EXPIRE_PASSWD) || pUserModals->usrmod0_max_passwd_age == TIMEQ_FOREVER)
|
||||
|
@ -224,6 +225,7 @@ DisplayUser(LPWSTR lpUserName)
|
|||
|
||||
PrintPaddedResourceString(IDS_USER_PW_CHANGEABLE, nPaddedLength);
|
||||
PrintDateTime(dwLastSet + pUserModals->usrmod0_min_passwd_age);
|
||||
ConPuts(StdOut, L"\n");
|
||||
|
||||
PrintPaddedResourceString(IDS_USER_PW_REQUIRED, nPaddedLength);
|
||||
ConResPuts(StdOut, (pUserInfo->usri4_flags & UF_PASSWD_NOTREQD) ? IDS_GENERIC_NO : IDS_GENERIC_YES);
|
||||
|
|
Loading…
Reference in a new issue