diff options
Diffstat (limited to 'tbl_qcmd.c')
-rw-r--r-- | tbl_qcmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |