diff --git a/channels/rdpsnd/client/pulse/rdpsnd_pulse.c b/channels/rdpsnd/client/pulse/rdpsnd_pulse.c index c74c5e4cc..24c0f0d83 100644 --- a/channels/rdpsnd/client/pulse/rdpsnd_pulse.c +++ b/channels/rdpsnd/client/pulse/rdpsnd_pulse.c @@ -20,6 +20,7 @@ */ #include +#include #include @@ -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);