mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
shadow: Fix typo with rdpSettings data type
This commit fixes the following compiler error.
FreeRDP/server/shadow/Win/win_wds.c:767:9: error: unknown type name 'rdpSetting';
did you mean 'rdpSettings'?
767 | rdpSetting* settings = subsystem->shw->settings;
| ^~~~~~~~~~
| rdpSettings
The typo was introduced in ba41d5e532 commit.
This commit is contained in:
@@ -764,7 +764,7 @@ int win_shadow_wds_init(winShadowSubsystem* subsystem)
|
||||
return status;
|
||||
}
|
||||
|
||||
rdpSetting* settings = subsystem->shw->settings;
|
||||
rdpSettings* settings = subsystem->shw->settings;
|
||||
if (!freerdp_assistance_populate_settings_from_assistance_file(file, settings))
|
||||
return -1;
|
||||
if (!freerdp_settings_set_string(settings, FreeRDP_Domain, "RDP"))
|
||||
|
||||
Reference in New Issue
Block a user