Drop old BSC references in fd check configure option

Change-Id: I053c2bfe461aa82085e7dac1cdcc95dd77219949
This commit is contained in:
Pau Espin 2020-05-09 19:24:21 +02:00 committed by laforge
parent 0ae0fa1623
commit d05def0885
2 changed files with 3 additions and 3 deletions

View File

@ -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,

View File

@ -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;