remove prints

This commit is contained in:
PolynomialDivision 2017-12-13 20:05:35 +01:00
parent 3fc9dc41d7
commit 14c992118f
2 changed files with 2 additions and 2 deletions

View file

@ -186,7 +186,7 @@ int send_string(char *msg) {
int send_string_enc(char *msg) {
pthread_mutex_lock(&send_mutex);
printf("Sending string: %s\n", msg);
//printf("Sending string: %s\n", msg);
size_t msglen = strlen(msg);

View file

@ -423,7 +423,7 @@ static int handle_deauth_req(struct blob_attr *msg) {
int handle_network_msg(char* msg)
{
printf("HANDLING NETWORK MSG: %s\n", msg);
//printf("HANDLING NETWORK MSG: %s\n", msg);
struct blob_attr *tb[__NETWORK_MAX];
char *method;
char *data;