https://git.reactos.org/?p=reactos.git;a=commitdiff;h=e3d000c30eb8015a794338...
commit e3d000c30eb8015a794338bd73e4cac47905b276 Author: Marian Schubert marian.schubert@gmail.com AuthorDate: Sun Oct 29 21:38:05 2017 +0100
[NET] Add missing newlines to net utility output (#91)
Password last set and Password changeable lines were missing newlines. --- base/applications/network/net/cmdUser.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/base/applications/network/net/cmdUser.c b/base/applications/network/net/cmdUser.c index 2c65db0cc6..7267a553f4 100644 --- a/base/applications/network/net/cmdUser.c +++ b/base/applications/network/net/cmdUser.c @@ -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);