pespin has uploaded this change for review.

View Change

osmux: cosmetic: Fix indentation

Change-Id: Ic7087e7907c1078d134d7d9b11ed6a6bf1941308
---
M src/libosmo-mgcp/mgcp_osmux.c
1 file changed, 5 insertions(+), 5 deletions(-)

git pull ssh://gerrit.osmocom.org:29418/osmo-mgw refs/changes/42/29642/1
diff --git a/src/libosmo-mgcp/mgcp_osmux.c b/src/libosmo-mgcp/mgcp_osmux.c
index c2b6ba1..d9a10a9 100644
--- a/src/libosmo-mgcp/mgcp_osmux.c
+++ b/src/libosmo-mgcp/mgcp_osmux.c
@@ -535,21 +535,21 @@
/* Wait until we have the connection information from MDCX */
if (!mgcp_rtp_end_remote_addr_available(&conn->end)) {
LOGPCONN(conn->conn, DOSMUX, LOGL_INFO,
- "Osmux remote address/port still unknown\n");
+ "Osmux remote address/port still unknown\n");
return -1;
}

conn->osmux.in = osmux_handle_find_or_create(conn, rem_addr);
if (!conn->osmux.in) {
LOGPCONN(conn->conn, DOSMUX, LOGL_ERROR,
- "Cannot allocate input osmux handle for conn:%s\n",
- mgcp_conn_dump(conn->conn));
+ "Cannot allocate input osmux handle for conn:%s\n",
+ mgcp_conn_dump(conn->conn));
return -1;
}
if (osmux_xfrm_input_open_circuit(conn->osmux.in, conn->osmux.remote_cid, osmux_dummy) < 0) {
LOGPCONN(conn->conn, DOSMUX, LOGL_ERROR,
- "Cannot open osmux circuit %u for conn:%s\n",
- conn->osmux.remote_cid, mgcp_conn_dump(conn->conn));
+ "Cannot open osmux circuit %u for conn:%s\n",
+ conn->osmux.remote_cid, mgcp_conn_dump(conn->conn));
return -1;
}


To view, visit change 29642. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmo-mgw
Gerrit-Branch: master
Gerrit-Change-Id: Ic7087e7907c1078d134d7d9b11ed6a6bf1941308
Gerrit-Change-Number: 29642
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin@sysmocom.de>
Gerrit-MessageType: newchange