diff --git a/src/utils/ubus.c b/src/utils/ubus.c index 3b28567..eb7659f 100644 --- a/src/utils/ubus.c +++ b/src/utils/ubus.c @@ -637,7 +637,13 @@ int send_blob_attr_via_network(struct blob_attr *msg, char *method) { if (network_config.network_option == 2) { send_tcp(str); } else { - send_string_enc(str); + if(network_config.use_symm_enc) + { + send_string_enc(str); + } else + { + send_string(str); + } } free(data_str);