aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2013-10-18 13:04:48 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-10-19 12:10:16 +0200
commitc5085f9d3d2de69f686ed3ca2f189daa245fd607 (patch)
tree3cad29d05181a8d57afa5cadf31db7fb78869778
parent2082afa76e409c44be4fbad768a1f2e6ba940d37 (diff)
gbproxy: Fix warning and log message
Add the unused attribute to peer_free() that isn't used currently. Change 'RAC' to 'NSEI' in the log message, since the latter has been examined before the log message is generated. Sponsored-by: On-Waves ehf
-rw-r--r--openbsc/src/gprs/gb_proxy.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbsc/src/gprs/gb_proxy.c b/openbsc/src/gprs/gb_proxy.c
index 157ce1072..bfa6e9406 100644
--- a/openbsc/src/gprs/gb_proxy.c
+++ b/openbsc/src/gprs/gb_proxy.c
@@ -114,6 +114,7 @@ static struct gbprox_peer *peer_alloc(uint16_t bvci)
return peer;
}
+static void peer_free(struct gbprox_peer *peer) __attribute__((__unused__));
static void peer_free(struct gbprox_peer *peer)
{
llist_del(&peer->list);
@@ -349,7 +350,7 @@ static int gbprox_rx_sig_from_bss(struct msgb *msg, uint16_t nsei,
* SGSN */
return gbprox_relay2sgsn(msg, ns_bvci);
err_no_peer:
- LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(BSS) cannot find peer based on RAC\n",
+ LOGP(DGPRS, LOGL_ERROR, "NSEI=%u(BSS) cannot find peer based on NSEI\n",
nsei);
return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, NULL, msg);
err_mand_ie: