@@ -1006,13 +1006,13 @@ void get_application_infos(std::string device_identifier, std::string method_id)
1006
1006
1007
1007
CFStringRef cf_app_type_value = create_CFString (" User" );
1008
1008
const void *client_opts_values_arr[] = { cf_app_type_value, cf_return_attributes_array };
1009
- CFDictionaryRef clinet_opts_dict = CFDictionaryCreate (NULL , client_opts_keys_arr, client_opts_values_arr, 2 , NULL , NULL );
1009
+ CFDictionaryRef client_opts_dict = CFDictionaryCreate (NULL , client_opts_keys_arr, client_opts_values_arr, 2 , NULL , NULL );
1010
1010
1011
1011
CFStringRef cf_command_key = create_CFString (" Command" );
1012
1012
CFStringRef cf_client_options_key = create_CFString (" ClientOptions" );
1013
1013
const void *keys_arr[] = { cf_command_key, cf_client_options_key };
1014
1014
CFStringRef cf_command_value = create_CFString (" Browse" );
1015
- const void *values_arr[] = { cf_command_value, clinet_opts_dict };
1015
+ const void *values_arr[] = { cf_command_value, client_opts_dict };
1016
1016
CFDictionaryRef dict_command = CFDictionaryCreate (NULL , keys_arr, values_arr, 2 , NULL , NULL );
1017
1017
1018
1018
send_con_message (serviceInfo.connection , dict_command);
@@ -1022,7 +1022,7 @@ void get_application_infos(std::string device_identifier, std::string method_id)
1022
1022
CFRelease (cf_app_type_key);
1023
1023
CFRelease (cf_return_attrs_key);
1024
1024
CFRelease (cf_app_type_value);
1025
- CFRelease (clinet_opts_dict );
1025
+ CFRelease (client_opts_dict );
1026
1026
CFRelease (cf_command_key);
1027
1027
CFRelease (cf_client_options_key);
1028
1028
CFRelease (cf_command_value);
0 commit comments