aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2015-11-17 12:26:02 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2015-11-18 17:34:43 +0100
commit3d3aa8fb88a9fc49f21544221c41edeca04569eb (patch)
tree640361a3177b46740b32ede98fd08cb36346a002
parent4034897038c6a0a9b9e14d1a0f8ce0e873045ac1 (diff)
gtphub: fix fatal log msg for SGSN proxy.
While reworking the logging, a stray comma found its way into the code. Fixes coverity 1339765. Sponsored-by: On-Waves ehi
-rw-r--r--openbsc/src/gprs/gtphub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/gprs/gtphub.c b/openbsc/src/gprs/gtphub.c
index 049e9f516..406d60d9b 100644
--- a/openbsc/src/gprs/gtphub.c
+++ b/openbsc/src/gprs/gtphub.c
@@ -1878,7 +1878,7 @@ int gtphub_start(struct gtphub *hub, struct gtphub_cfg *cfg)
&hub->to_sgsns[plane_idx],
&cfg->sgsn_proxy[plane_idx])
!= 0) {
- LOG(LOGL_FATAL, "Cannot configure SGSN proxy",
+ LOG(LOGL_FATAL, "Cannot configure SGSN proxy"
" %s port %d.\n",
cfg->sgsn_proxy[plane_idx].addr_str,
(int)cfg->sgsn_proxy[plane_idx].port);