From 7fd9d125ef3d0ee41fc054176e3eb56c2e1a4094 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 0b9d77ce89e..8e8b5b088b9 100644 --- a/src/modules/dialog/dlg_db_handler.c +++ b/src/modules/dialog/dlg_db_handler.c @@ -565,11 +565,11 @@ static int load_dialog_vars_from_db(int fetch_num_rows) } 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"); } } } 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"); } }