[channels,rdpsnd] use freerdp_getApplicationDetailsString

Use proper vendor/product name for pulse sinc.
This commit is contained in:
Armin Novak
2026-02-09 11:53:33 +01:00
parent 4104567d7c
commit 1ebc39f22f

View File

@@ -20,6 +20,7 @@
*/
#include <freerdp/config.h>
#include <freerdp/utils/helpers.h>
#include <errno.h>
@@ -722,9 +723,9 @@ static UINT rdpsnd_pulse_parse_addin_args(rdpsndPulsePlugin* pulse, const ADDIN_
} while ((arg = CommandLineFindNextArgumentA(arg)) != NULL);
if (!client_name)
client_name = "freerdp";
client_name = freerdp_getApplicationDetailsString();
if (!stream_name)
stream_name = "freerdp";
stream_name = freerdp_getApplicationDetailsString();
pulse->client_name = _strdup(client_name);
pulse->stream_name = _strdup(stream_name);