https://git.reactos.org/?p=reactos.git;a=commitdiff;h=23825149a2503d215f6cc…
commit 23825149a2503d215f6cc8cf49d88029b871c101
Author: Eric Kohl <eric.kohl(a)reactos.org>
AuthorDate: Sat May 18 21:21:39 2019 +0200
Commit: Eric Kohl <eric.kohl(a)reactos.org>
CommitDate: Sat May 18 21:21:39 2019 +0200
[NET] Display the 'no logon hours' case in the USER command.
---
base/applications/network/net/cmdUser.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/base/applications/network/net/cmdUser.c
b/base/applications/network/net/cmdUser.c
index f697d4570b4..314a8b28e74 100644
--- a/base/applications/network/net/cmdUser.c
+++ b/base/applications/network/net/cmdUser.c
@@ -307,6 +307,13 @@ PrintLogonHours(
bFirst = FALSE;
}
}
+
+ if (bFirst)
+ {
+ /* No logon hours */
+ PrintMessageString(4434);
+ ConPuts(StdOut, L"\n");
+ }
}