From 7e83f18bba236b6663b42033572e033ca559da39 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Mon, 7 Dec 2020 19:28:44 +0100 Subject: [PATCH] ipc: Fix wrong reference to BTS in log line Change-Id: Idd272959e335c46ca88e348dd792e15ddb317d61 --- Transceiver52M/device/ipc/IPCDevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Transceiver52M/device/ipc/IPCDevice.cpp b/Transceiver52M/device/ipc/IPCDevice.cpp index a16f7230..5ed428e6 100644 --- a/Transceiver52M/device/ipc/IPCDevice.cpp +++ b/Transceiver52M/device/ipc/IPCDevice.cpp @@ -793,7 +793,7 @@ int IPCDevice::open(const std::string &args, int ref, bool swap_channels) INIT_LLIST_HEAD(&master_sk_state.upqueue); rc = osmo_sock_unix_init_ofd(&master_sk_state.conn_bfd, SOCK_SEQPACKET, 0, v.c_str(), OSMO_SOCK_F_CONNECT); if (rc < 0) { - LOGC(DDEV, ERROR) << "Failed to connect to the BTS (" << v << "). " + LOGC(DDEV, ERROR) << "Failed to connect to the IPC device (" << v << "). " << "Retrying...\n"; osmo_timer_setup(&master_sk_state.timer, ipc_sock_timeout, NULL); osmo_timer_schedule(&master_sk_state.timer, 5, 0);