From d05def088533a4d7a9fb3f941d032abe91258955 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Sat, 9 May 2020 19:24:21 +0200 Subject: [PATCH] Drop old BSC references in fd check configure option Change-Id: I053c2bfe461aa82085e7dac1cdcc95dd77219949 --- configure.ac | 4 ++-- src/select.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index cba0a4193..ac887a0db 100644 --- a/configure.ac +++ b/configure.ac @@ -227,12 +227,12 @@ fi AC_ARG_ENABLE(bsc_fd_check, [AS_HELP_STRING( [--enable-bsc-fd-check], - [Instrument bsc_register_fd to check that the fd is registered] + [Instrument osmo_fd_register to check that the fd is registered] )], [fd_check=$enableval], [fd_check="no"]) if test x"$fd_check" = x"no" then - AC_DEFINE([BSC_FD_CHECK],[1],[Instrument the bsc_register_fd]) + AC_DEFINE([OSMO_FD_CHECK],[1],[Instrument the osmo_fd_register]) fi AC_ARG_ENABLE(msgfile, diff --git a/src/select.c b/src/select.c index 774056a97..496beea9f 100644 --- a/src/select.c +++ b/src/select.c @@ -121,7 +121,7 @@ int osmo_fd_register(struct osmo_fd *fd) if (fd->fd > maxfd) maxfd = fd->fd; -#ifdef BSC_FD_CHECK +#ifdef OSMO_FD_CHECK if (osmo_fd_is_registered(fd)) { fprintf(stderr, "Adding a osmo_fd that is already in the list.\n"); return 0;