aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2017-06-19 18:22:21 +0200
committerPhilipp Maier <pmaier@sysmocom.de>2017-06-20 14:32:51 +0200
commitbbd32cddf8986f603507829a9ea430a3bef43bcd (patch)
treee162abf5c3267d27a90da23563614dd47e9d2b1a
parent3c8f08c78784ed9c84f6327f56c2debac4240943 (diff)
a_iface: fix typo in function name
-rw-r--r--openbsc/src/libmsc/a_iface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/src/libmsc/a_iface.c b/openbsc/src/libmsc/a_iface.c
index 332880567..ff57eab49 100644
--- a/openbsc/src/libmsc/a_iface.c
+++ b/openbsc/src/libmsc/a_iface.c
@@ -246,7 +246,7 @@ int enc_channel_type(struct gsm0808_channel_type *ct, const struct gsm_mncc_bear
}
/* Assemble the speech codec field */
-static int enc_speeach_codec_list(struct gsm0808_speech_codec_list *scl, const struct gsm0808_channel_type *ct)
+static int enc_speech_codec_list(struct gsm0808_speech_codec_list *scl, const struct gsm0808_channel_type *ct)
{
unsigned int i;
int rc;
@@ -285,7 +285,7 @@ int a_iface_tx_assignment(struct gsm_trans *trans)
}
/* Speech codec list */
- rc = enc_speeach_codec_list(&scl, &ct);
+ rc = enc_speech_codec_list(&scl, &ct);
if (rc < 0) {
LOGP(DMSC, LOGL_ERROR, "Faild to generate Speech codec list -- assignment not sent!\n");
return -EINVAL;