aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/osmo-bsc_mgcp/mgcp_main.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2020-10-18 22:31:33 +0200
committerHarald Welte <laforge@osmocom.org>2020-10-18 22:31:58 +0200
commit658c0c83fd6453e0ceb752d136c2cca3da235540 (patch)
tree902a396950f92b7b31d52216df9b790b8f4062cc /openbsc/src/osmo-bsc_mgcp/mgcp_main.c
parent729083efbd8c6ea46f77876b30e2cdcbd6e671fd (diff)
Migrate from BSC_FD_* to OSMO_FD_*
Diffstat (limited to 'openbsc/src/osmo-bsc_mgcp/mgcp_main.c')
-rw-r--r--openbsc/src/osmo-bsc_mgcp/mgcp_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/osmo-bsc_mgcp/mgcp_main.c b/openbsc/src/osmo-bsc_mgcp/mgcp_main.c
index 220efa3e8..8a71f53f5 100644
--- a/openbsc/src/osmo-bsc_mgcp/mgcp_main.c
+++ b/openbsc/src/osmo-bsc_mgcp/mgcp_main.c
@@ -246,7 +246,7 @@ int main(int argc, char **argv)
/* we need to bind a socket */
if (rc == 0) {
- cfg->gw_fd.bfd.when = BSC_FD_READ;
+ cfg->gw_fd.bfd.when = OSMO_FD_READ;
cfg->gw_fd.bfd.cb = read_call_agent;
cfg->gw_fd.bfd.fd = socket(AF_INET, SOCK_DGRAM, 0);
if (cfg->gw_fd.bfd.fd < 0) {