aboutsummaryrefslogtreecommitdiffstats
path: root/src/libmsc/a_iface.c
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2017-06-19 18:22:21 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2017-07-12 23:42:47 +0200
commitfef402194f28c550b972e33c0bd5f6b1710c5790 (patch)
treef33c286ed4b51a825cee9fcf603d85c19b82cf2e /src/libmsc/a_iface.c
parentde4df2e6a1aaea2367649b6af02703125f148e74 (diff)
a_iface: fix typo in function name
Diffstat (limited to 'src/libmsc/a_iface.c')
-rw-r--r--src/libmsc/a_iface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libmsc/a_iface.c b/src/libmsc/a_iface.c
index 759c58313..a5e2f7205 100644
--- a/src/libmsc/a_iface.c
+++ b/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;