Module: kamailio Branch: 5.0 Commit: 0965f58554f5917efecbc9e3329789a9f7c4472f URL: https://github.com/kamailio/kamailio/commit/0965f58554f5917efecbc9e3329789a9...
Author: Dmitri Savolainen savolainen@erinaco.ru Committer: Henning Westerholt hw@kamailio.org Date: 2018-11-20T10:56:31+01:00
dialog: fix typo in warn message (#1731)
- GH #1731
(cherry picked from commit df6152fd69469eb340078535a3cf8b28e901ea7d)
---
Modified: src/modules/dialog/dlg_db_handler.c
---
Diff: https://github.com/kamailio/kamailio/commit/0965f58554f5917efecbc9e3329789a9... Patch: https://github.com/kamailio/kamailio/commit/0965f58554f5917efecbc9e3329789a9...
---
diff --git a/src/modules/dialog/dlg_db_handler.c b/src/modules/dialog/dlg_db_handler.c index 0b9d77ce89..8e8b5b088b 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"); } }