return in functions

This commit is contained in:
PolynomialDivision 2017-12-13 10:40:33 +01:00
parent 261a680763
commit eba090c1fb

View file

@ -787,7 +787,7 @@ static void ubus_get_clients_cb(struct ubus_request *req, int type, struct blob_
parse_to_clients(msg, 1, req->peer);
printf("SENDING CLIENTS VIA NETWORK\n");
send_blob_attr_via_network(msg, "clients");
//send_blob_attr_via_network(msg, "clients");
printf("SEND CLIENTS FINISHED!\n");
@ -886,7 +886,7 @@ int ubus_send_probe_via_network(struct probe_entry_s probe_entry) {
blobmsg_add_u8(&b, "ht_support", probe_entry.ht_support);
blobmsg_add_u8(&b, "vht_support", probe_entry.vht_support);
//send_blob_attr_via_network(b.head, "probe");
send_blob_attr_via_network(b.head, "probe");
return 0;
}