From 2a42aebc8d6905989f21ec21459a1cd368632b6f Mon Sep 17 00:00:00 2001 From: Dmitri Savolainen Date: Tue, 20 Nov 2018 12:42:05 +0300 Subject: [PATCH] dialog: fix typo in warn message (#1731) - GH #1731 (cherry picked from commit df6152fd69469eb340078535a3cf8b28e901ea7d) --- src/modules/dialog/dlg_db_handler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/dialog/dlg_db_handler.c b/src/modules/dialog/dlg_db_handler.c index d7591400187..1b9d704cf69 100644 --- a/src/modules/dialog/dlg_db_handler.c +++ b/src/modules/dialog/dlg_db_handler.c @@ -643,14 +643,14 @@ static int load_dialog_vars_from_db(int fetch_num_rows, int mode, } dlg = dlg->next; if (!dlg) { - LM_WARN("insonsistent data: the dialog h_entry/h_id does not exist!\n"); + LM_WARN("inconsistent data: the dialog h_entry/h_id does not exist!\n"); } } if(mode==1 && mval!=NULL) { dlg_unlock(d_table, &(d_table->entries[VAL_INT(values)])); } } else { - LM_WARN("insonsistent data: the h_entry in the DB does not exist!\n"); + LM_WARN("inconsistent data: the h_entry in the DB does not exist!\n"); } }