From 2dd23c171d66f665dd4d3fe8606aeec8e09c1dab Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sun, 1 Mar 2020 05:57:20 +0000 Subject: [PATCH] Update some messages. --- worker.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worker.c b/worker.c index c4f73b9..282d385 100644 --- a/worker.c +++ b/worker.c @@ -181,7 +181,7 @@ void* WorkingLoop(void* arguments) if(pkt_hdr->remote_id != htole32(AARUREMOTE_REMOTE_ID) || pkt_hdr->packet_id != htole32(AARUREMOTE_PACKET_ID)) { - printf("Received data is not a correct dicremote packet, closing connection...\n"); + printf("Received data is not a correct aaruremote packet, closing connection...\n"); free(pkt_hdr); NetClose(cli_ctx); continue; @@ -274,7 +274,7 @@ void* WorkingLoop(void* arguments) if(pkt_hdr->remote_id != htole32(AARUREMOTE_REMOTE_ID) || pkt_hdr->packet_id != htole32(AARUREMOTE_PACKET_ID)) { - printf("Received data is not a correct dicremote packet, closing connection...\n"); + printf("Received data is not a correct aaruremote packet, closing connection...\n"); NetClose(cli_ctx); free(pkt_hdr); break;