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:
Biswapriyo Nath
2024-12-06 18:24:44 +00:00
parent 1186be1a3c
commit cad4f8ebd7

View File

@@ -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"))