mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Log raw keyboard value on best guess
This commit is contained in:
parent
04113b13d5
commit
7085104c33
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ event rdp_client_core_data(c: connection, data: RDP::ClientCoreData) &priority=5
|
|||
{
|
||||
if (data$keyboard_layout & 0xffff in RDP::languages)
|
||||
{
|
||||
c$rdp$keyboard_layout = fmt("%s (Best Guess)", RDP::languages[data$keyboard_layout & 0xffff]);
|
||||
c$rdp$keyboard_layout = fmt("%s (Best Guess of %d)", RDP::languages[data$keyboard_layout & 0xffff], data$keyboard_layout);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue