cosmetic: fix typo in log output

Change-Id: I8d76a61e28c0677e121586c1fe4666baa7196b18
This commit is contained in:
Philipp Maier 2017-06-30 14:21:31 +02:00 committed by Neels Hofmeyr
parent 2535d12377
commit d6278889c4
2 changed files with 3 additions and 3 deletions

View File

@ -194,7 +194,7 @@ static int match_codec_pref(int *full_rate, enum gsm48_chan_mode *chan_mode,
static int bssmap_handle_reset_ack(struct bsc_msc_data *msc,
struct msgb *msg, unsigned int length)
{
LOGP(DMSC, LOGL_NOTICE, "Reset ACK from MSC No.: %i\n", msc->nr);
LOGP(DMSC, LOGL_NOTICE, "RESET ACK from MSC No.: %i\n", msc->nr);
/* Inform the FSM that controls the RESET/RESET-ACK procedure
* that we have successfully received the reset-ack message */
@ -207,7 +207,7 @@ static int bssmap_handle_reset_ack(struct bsc_msc_data *msc,
static int bssmap_handle_reset(struct bsc_msc_data *msc,
struct msgb *msg, unsigned int length)
{
LOGP(DMSC, LOGL_NOTICE, "Reset from MSC No.: %i\n", msc->nr);
LOGP(DMSC, LOGL_NOTICE, "RESET from MSC No.: %i\n", msc->nr);
/* Instruct the bsc to close all open sigtran connections and to
* close all active channels on the BTS side as well */

View File

@ -96,7 +96,7 @@ static void osmo_bsc_sigtran_tx_reset(struct bsc_msc_data *msc)
void osmo_bsc_sigtran_tx_reset_ack(struct bsc_msc_data *msc)
{
struct msgb *msg;
LOGP(DMSC, LOGL_NOTICE, "Sending RESET RACK to MSC No.: %i\n", msc->nr);
LOGP(DMSC, LOGL_NOTICE, "Sending RESET ACK to MSC No.: %i\n", msc->nr);
msg = gsm0808_create_reset_ack();
osmo_sccp_tx_unitdata_msg(msc->a.sccp_user, &msc->a.g_calling_addr,
&msc->a.g_called_addr, msg);