aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/osmo-bsc_nat
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-09-03 11:25:16 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-09-03 15:04:31 +0200
commitff98b3cffa9badc7d2cc5b2e8fed3460ccb017c6 (patch)
treed9a575e85742b92a4be7792dd0839176db6730fe /openbsc/src/osmo-bsc_nat
parent33eb5873d9eb2442190e48bc401e1d8f06c73103 (diff)
nat: Fix the log message of the code in case of an allocation failure
This wrong log message appears to be the result of copy and paste
Diffstat (limited to 'openbsc/src/osmo-bsc_nat')
-rw-r--r--openbsc/src/osmo-bsc_nat/bsc_nat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/osmo-bsc_nat/bsc_nat.c b/openbsc/src/osmo-bsc_nat/bsc_nat.c
index bbbeb0311..a1fc035e6 100644
--- a/openbsc/src/osmo-bsc_nat/bsc_nat.c
+++ b/openbsc/src/osmo-bsc_nat/bsc_nat.c
@@ -309,7 +309,7 @@ static void nat_send_rlc(struct bsc_msc_connection *msc_con,
msg = msgb_alloc_headroom(4096, 128, "rlc");
if (!msg) {
- LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
+ LOGP(DNAT, LOGL_ERROR, "Failed to sccp rlc.\n");
return;
}