[PATCH] openbsc[master]: osmo-nitb: exit when MNCC socket init failed

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

Neels Hofmeyr gerrit-no-reply at lists.osmocom.org
Fri Oct 21 00:01:12 UTC 2016


Review at  https://gerrit.osmocom.org/1141

osmo-nitb: exit when MNCC socket init failed

Change-Id: Icef97bb5da9840b810fe6f4b4da6abd4baa66915
---
M openbsc/src/osmo-nitb/bsc_hack.c
1 file changed, 5 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.osmocom.org:29418/openbsc refs/changes/41/1141/1

diff --git a/openbsc/src/osmo-nitb/bsc_hack.c b/openbsc/src/osmo-nitb/bsc_hack.c
index 4e15b2d..df17eb6 100644
--- a/openbsc/src/osmo-nitb/bsc_hack.c
+++ b/openbsc/src/osmo-nitb/bsc_hack.c
@@ -289,7 +289,11 @@
 			fprintf(stderr, "Allocation failed. Exiting.\n");
 			exit(1);
 		}
-		mncc_sock_init(bsc_gsmnet, mncc_sock_path);
+		rc = mncc_sock_init(bsc_gsmnet, mncc_sock_path);
+		if (rc) {
+			fprintf(stderr, "MNCC socket initialization failed. exiting.\n");
+			exit(1);
+		}
 	} else {
 		DEBUGP(DMNCC, "Using internal MNCC handler.\n");
 		rc = bsc_network_alloc(int_mncc_recv);

-- 
To view, visit https://gerrit.osmocom.org/1141
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Icef97bb5da9840b810fe6f4b4da6abd4baa66915
Gerrit-PatchSet: 1
Gerrit-Project: openbsc
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr <nhofmeyr at sysmocom.de>



More information about the gerrit-log mailing list