aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Willmann <dwillmann@sysmocom.de>2017-12-21 19:39:16 +0100
committerDaniel Willmann <dwillmann@sysmocom.de>2018-01-30 18:59:29 +0100
commit58583aaf3b45d5d1e7333416eef27cd9d2514c9c (patch)
tree83082f23ec2b065e273fbd3779c2f9152f201d3f
parent5410a4a500f25c3c91d2a5ab55b11d6def1e5b71 (diff)
osmo-bsc_nat: Change warning into comment
-rw-r--r--openbsc/src/osmo-bsc_nat/bsc_sccp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/osmo-bsc_nat/bsc_sccp.c b/openbsc/src/osmo-bsc_nat/bsc_sccp.c
index f7358f881..3e286d874 100644
--- a/openbsc/src/osmo-bsc_nat/bsc_sccp.c
+++ b/openbsc/src/osmo-bsc_nat/bsc_sccp.c
@@ -43,7 +43,7 @@ static int equal(struct sccp_source_reference *ref1, struct sccp_source_referenc
static int sccp_ref_is_free(struct sccp_source_reference *ref, struct bsc_nat *nat)
{
struct nat_sccp_connection *conn;
-#warning "We could have two lists - one for msc and one for bsc side..."
+ /* We could have two lists - one for msc and one for bsc side... */
llist_for_each_entry(conn, &nat->sccp_connections, list_entry) {
if (equal(ref, &conn->bsc_patched_ref))
return -1;