cosmetic: comment typos

This commit is contained in:
Neels Hofmeyr 2016-04-19 17:54:25 +02:00
parent bde4d3b3b7
commit 525a69ef4e
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@
typedef void (*ranap_handle_cb)(void *ctx, ranap_message *ranap_msg);
/* receive a connections-liess RANAP message */
/* receive a connection-less RANAP message */
int ranap_cn_rx_cl(ranap_handle_cb cb, void *ctx, uint8_t *data, size_t len);
/* receive a connection-oriented RANAP message */

View File

@ -255,8 +255,8 @@ void hnb_context_release(struct hnb_context *ctx)
/* deactivate all context maps */
llist_for_each_entry_safe(map, map2, &ctx->map_list, hnb_list) {
/* remove it from list, as HNB context will soon be
* gone. Let's hope the seccond osmo_llist_del in the
* map garbage collector wors fine? */
* gone. Let's hope the second osmo_llist_del in the
* map garbage collector works fine? */
llist_del(&map->hnb_list);
context_map_deactivate(map);
}