pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/libosmo-netif/+/29323 )
Change subject: stream: Fix typos in log messages
......................................................................
stream: Fix typos in log messages
Change-Id: I9e49e222c254c89d182402501024badfd3bf9d9c
---
M src/stream.c
1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-netif refs/changes/23/29323/1
diff --git a/src/stream.c b/src/stream.c
index a7053e9..f090c4f 100644
--- a/src/stream.c
+++ b/src/stream.c
@@ -1550,11 +1550,11 @@
if (ret < 0) {
if (errno == EPIPE || errno == ECONNRESET) {
LOGP(DLINP, LOGL_ERROR,
- "lost connection with srv\n");
+ "lost connection with client\n");
}
return ret;
} else if (ret == 0) {
- LOGP(DLINP, LOGL_ERROR, "connection closed with srv\n");
+ LOGP(DLINP, LOGL_ERROR, "connection closed with client\n");
return ret;
}
msgb_put(msg, ret);
--
To view, visit
https://gerrit.osmocom.org/c/libosmo-netif/+/29323
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-netif
Gerrit-Branch: master
Gerrit-Change-Id: I9e49e222c254c89d182402501024badfd3bf9d9c
Gerrit-Change-Number: 29323
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newchange