diff --git a/include/osmocom/ranap/ranap_common_cn.h b/include/osmocom/ranap/ranap_common_cn.h index f0fd09eb..dfce3584 100644 --- a/include/osmocom/ranap/ranap_common_cn.h +++ b/include/osmocom/ranap/ranap_common_cn.h @@ -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 */ diff --git a/src/hnbgw.c b/src/hnbgw.c index dab10853..09e7a04e 100644 --- a/src/hnbgw.c +++ b/src/hnbgw.c @@ -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); }