sccp: Move the destruction of the sccp connection to a new place
diff --git a/openbsc/src/nat/bsc_sccp.c b/openbsc/src/nat/bsc_sccp.c
index 5f0809d..40676b3 100644
--- a/openbsc/src/nat/bsc_sccp.c
+++ b/openbsc/src/nat/bsc_sccp.c
@@ -135,11 +135,7 @@
 			if (bsc != conn->bsc)
 				continue;
 
-			LOGP(DNAT, LOGL_DEBUG, "Destroy 0x%x <-> 0x%x mapping for con %p\n",
-				sccp_src_ref_to_int(&conn->real_ref),
-				sccp_src_ref_to_int(&conn->patched_ref), bsc);
-			llist_del(&conn->list_entry);
-			talloc_free(conn);
+			sccp_connection_destroy(conn);
 			return;
 		}
 	}