From 0bb8fce2f1ae160a5cd989a27daa0a8f6c749ab0 Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Sat, 11 Jan 2020 23:47:47 +0100 Subject: [PATCH] hlr: remove unused internal USSD list struct hlr.iuse_list is not used at all. Change-Id: I7b51c195bbc107beb0a0bde72b266757fc4fd5e2 --- include/osmocom/hlr/hlr.h | 1 - src/hlr.c | 1 - 2 files changed, 2 deletions(-) diff --git a/include/osmocom/hlr/hlr.h b/include/osmocom/hlr/hlr.h index 18c4a1d7..0564518a 100644 --- a/include/osmocom/hlr/hlr.h +++ b/include/osmocom/hlr/hlr.h @@ -46,7 +46,6 @@ struct hlr { struct llist_head euse_list; struct hlr_euse *euse_default; - struct llist_head iuse_list; /* NCSS (call independent) session guard timeout value */ int ncss_guard_timeout; diff --git a/src/hlr.c b/src/hlr.c index 38b9022f..656f0a43 100644 --- a/src/hlr.c +++ b/src/hlr.c @@ -846,7 +846,6 @@ int main(int argc, char **argv) g_hlr = talloc_zero(hlr_ctx, struct hlr); INIT_LLIST_HEAD(&g_hlr->euse_list); - INIT_LLIST_HEAD(&g_hlr->iuse_list); INIT_LLIST_HEAD(&g_hlr->ss_sessions); INIT_LLIST_HEAD(&g_hlr->ussd_routes); g_hlr->db_file_path = talloc_strdup(g_hlr, HLR_DEFAULT_DB_FILE_PATH);