aboutsummaryrefslogtreecommitdiffstats
path: root/tbl_qcmd.c
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2017-05-07 23:29:37 +0100
committerFreeArtMan <dos21h@gmail.com>2017-05-07 23:29:37 +0100
commitd43cf6e4704da5414c80e32da06060ad06511f62 (patch)
treea186407e73525c66a29ffa4f8c734cae7a5db385 /tbl_qcmd.c
parent67664bcf54a128bd9cfb76f4fc047131e740cbc2 (diff)
downloadagni-d43cf6e4704da5414c80e32da06060ad06511f62.tar.gz
agni-d43cf6e4704da5414c80e32da06060ad06511f62.zip
Fixed bug with not sending correctly PONG to response to PING
Diffstat (limited to 'tbl_qcmd.c')
-rw-r--r--tbl_qcmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tbl_qcmd.c b/tbl_qcmd.c
index a8b42ab..874ad10 100644
--- a/tbl_qcmd.c
+++ b/tbl_qcmd.c
@@ -100,7 +100,7 @@ int tbl_exec_run(tbl_exec *tbl, char *cmd, void **resp)
for (i=0;i<tbl->size;i++)
{
el = tbl->cmd[i];
- PRINT("CALLBACK CMD %s\n",cmd);
+ //PRINT("CALLBACK CMD %s\n",cmd);
if (strncmp(el->cmd, cmd, strlen(el->cmd))==0)
{
void *ret_resp=NULL;
@@ -134,7 +134,7 @@ int tbl_exec_run(tbl_exec *tbl, char *cmd, void **resp)
}
}
- PRINT("CALLBACK PARAMS %s\n", clbk_data);
+ //PRINT("CALLBACK PARAMS %s\n", clbk_data);
ret_resp = el->callback(clbk_data); //no params for now