pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/libosmo-gprs/+/30910 )
Change subject: llc: Log error loading gprs chiper plugins
......................................................................
llc: Log error loading gprs chiper plugins
Change-Id: Ie0438b444c2aff8991736806256fb67b59ee8bcc
---
M src/llc/llc.c
1 file changed, 3 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-gprs refs/changes/10/30910/1
diff --git a/src/llc/llc.c b/src/llc/llc.c
index 3ddba6a..1f52851 100644
--- a/src/llc/llc.c
+++ b/src/llc/llc.c
@@ -126,8 +126,10 @@
int rc;
OSMO_ASSERT(location == OSMO_GPRS_LLC_LOCATION_MS || location ==
OSMO_GPRS_LLC_LOCATION_SGSN)
- if ((rc = gprs_cipher_load(cipher_plugin_path)) != 0)
+ if ((rc = gprs_cipher_load(cipher_plugin_path)) != 0) {
+ LOGLLC(LOGL_NOTICE, "Failed loading GPRS cipher plugins from %s\n",
cipher_plugin_path);
return rc;
+ }
if (g_ctx)
talloc_free(g_ctx);
--
To view, visit
https://gerrit.osmocom.org/c/libosmo-gprs/+/30910
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-gprs
Gerrit-Branch: master
Gerrit-Change-Id: Ie0438b444c2aff8991736806256fb67b59ee8bcc
Gerrit-Change-Number: 30910
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newchange