aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2011-11-07 13:37:56 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2011-11-07 13:37:56 +0100
commite194cd92a809b0b6ab3513e6742dba3871179c2e (patch)
treeb78a5d6258a4e5987d6ace02b637d1e0b1c21049
parent0b5ffc1788fe065b8e4aff15f7023338914257d6 (diff)
ipa: The message claims to close the socket but it remains open.
Correct the 'closing socket' statement. It would be nice to know why this message has been discarded but I can't answer that right now.
-rw-r--r--src/input/ipaccess.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/ipaccess.c b/src/input/ipaccess.c
index 9c501de..2621290 100644
--- a/src/input/ipaccess.c
+++ b/src/input/ipaccess.c
@@ -422,7 +422,7 @@ static int handle_ts1_read(struct osmo_fd *bfd)
}
if (e1i_ts->line->ops->sign_link(msg) < 0) {
LOGP(DLINP, LOGL_ERROR, "Bad signalling message,"
- "closing socket.\n");
+ "sign_link returned error.\n");
ret = -EINVAL;
}
return ret;