From 142fd5d5859539f7eb6703e8b1f6f9035157a37a Mon Sep 17 00:00:00 2001 From: Fabrice Desclaux Date: Mon, 20 Feb 2012 23:24:32 +0100 Subject: [PATCH] at query is not NULL when receiving xmit status --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 24fba69..f0174a2 100644 --- a/main.c +++ b/main.c @@ -114,7 +114,7 @@ static int parse_xmit_status(struct xbee_ctx *ctx, } /* see if it matches a xmit query (atcmd_query must be NULL) */ - if (ctx->atcmd_query[0] == '\0') { + if (ctx->atcmd_query[0] != '\0') { printf("invalid response 2\n"); return -1; } -- 2.20.1