Skip to content

Commit

Permalink
usrloc: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
l2dy committed Mar 9, 2020
1 parent 31fc3b6 commit 8dcf840
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/usrloc/udomain.c
Expand Up @@ -211,13 +211,13 @@ int ul_event_init(void)

ei_c_update_id = evi_publish_event(ei_contact_update_name);
if (ei_c_update_id == EVI_ERROR) {
LM_ERR("cannot register contact delete event\n");
LM_ERR("cannot register contact update event\n");
return -1;
}

ei_c_latency_update_id = evi_publish_event(ei_contact_latency_update_name);
if (ei_c_update_id == EVI_ERROR) {
LM_ERR("cannot register contact delete event\n");
if (ei_c_latency_update_id == EVI_ERROR) {
LM_ERR("cannot register contact latency update event\n");
return -1;
}

Expand Down

0 comments on commit 8dcf840

Please sign in to comment.