Skip to content

Commit

Permalink
dialog: fix typo in warn message (#1731)
Browse files Browse the repository at this point in the history
- GH #1731

(cherry picked from commit df6152f)
  • Loading branch information
snen authored and henningw committed Nov 20, 2018
1 parent 1b71de8 commit 2a42aeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/dialog/dlg_db_handler.c
Expand Up @@ -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");
}
}

Expand Down

0 comments on commit 2a42aeb

Please sign in to comment.