aboutsummaryrefslogtreecommitdiffstats
path: root/src/ipaccess-find.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2009-05-23 05:22:08 +0000
committerHarald Welte <laforge@gnumonks.org>2009-05-23 05:22:08 +0000
commitff117a8d1138d9629df543ed00e698ee3a0bdb73 (patch)
tree6e27b6ebaa4229d8cea5adb8ab8025f96cd3229c /src/ipaccess-find.c
parentd6cab81175ec6afe5708ade7557d35330c0cb973 (diff)
* rename the timer functions to avoid name collisions with libmisdn.
* the return value of bsc_update_timers() is required for applications to find out if a timer was fired (Andreas Eversberg)
Diffstat (limited to 'src/ipaccess-find.c')
-rw-r--r--src/ipaccess-find.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ipaccess-find.c b/src/ipaccess-find.c
index bada3b259..32f42e904 100644
--- a/src/ipaccess-find.c
+++ b/src/ipaccess-find.c
@@ -143,7 +143,7 @@ static void timer_cb(void *_data)
bfd->when |= BSC_FD_WRITE;
- schedule_timer(&timer, 5, 0);
+ bsc_schedule_timer(&timer, 5, 0);
}
int main(int argc, char **argv)
@@ -165,7 +165,7 @@ int main(int argc, char **argv)
timer.cb = timer_cb;
timer.data = &bfd;
- schedule_timer(&timer, 5, 0);
+ bsc_schedule_timer(&timer, 5, 0);
printf("Trying to find ip.access BTS by broadcast UDP...\n");