aboutsummaryrefslogtreecommitdiffstats
path: root/src/ipaccess
diff options
context:
space:
mode:
authorMartin Hauke <mardnh@gmx.de>2019-11-13 22:10:41 +0100
committerMartin Hauke <mardnh@gmx.de>2019-11-13 22:10:41 +0100
commita29affda9871f5d7212d19a6fa50544c2108ae49 (patch)
treecb787a2ab132f4af1952c6422464b7b0b545d991 /src/ipaccess
parent41eafec3f6ced5a389180629456d80d0a325d97c (diff)
Fix some typos
Fix typos and common misspellings in code comments and in the manual. Change-Id: I46fc9d424620c77ae9ccf78b58081bd303386d7c
Diffstat (limited to 'src/ipaccess')
-rw-r--r--src/ipaccess/ipaccess-config.c4
-rw-r--r--src/ipaccess/ipaccess-proxy.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ipaccess/ipaccess-config.c b/src/ipaccess/ipaccess-config.c
index 54e4efd09..f8738091d 100644
--- a/src/ipaccess/ipaccess-config.c
+++ b/src/ipaccess/ipaccess-config.c
@@ -192,7 +192,7 @@ static void check_restart_or_exit(struct gsm_bts_trx *trx)
static int ipacc_msg_ack(uint8_t mt, struct gsm_bts_trx *trx)
{
if (sw_load_state == 1) {
- fprintf(stderr, "The new software is activaed.\n");
+ fprintf(stderr, "The new software is activated.\n");
check_restart_or_exit(trx);
} else if (oml_state == 1) {
fprintf(stderr, "Set the NV Attributes.\n");
@@ -238,7 +238,7 @@ static int nwl_sig_cb(unsigned int subsys, unsigned int signal,
/* Create whitelist from results */
physconf_len = build_physconf(physconf_buf,
&trx->ipaccess.rxlev_stat);
- /* Start next test abbout BCCH channel usage */
+ /* Start next test about BCCH channel usage */
ipac_nwl_test_start(trx, NM_IPACC_TESTNO_BCCH_CHAN_USAGE,
physconf_buf, physconf_len);
break;
diff --git a/src/ipaccess/ipaccess-proxy.c b/src/ipaccess/ipaccess-proxy.c
index 26c5bcd92..a4ee10efc 100644
--- a/src/ipaccess/ipaccess-proxy.c
+++ b/src/ipaccess/ipaccess-proxy.c
@@ -581,7 +581,7 @@ struct msgb *ipaccess_proxy_read_msg(struct osmo_fd *bfd, int *error)
msgb_put(msg, ret);
- /* then read te length as specified in header */
+ /* then read the length as specified in header */
msg->l2h = msg->data + sizeof(*hh);
len = ntohs(hh->len);
ret = recv(bfd->fd, msg->l2h, len, 0);