From 18a237816419e6f88ab0383b43d8060914d26a9a Mon Sep 17 00:00:00 2001 From: Ethan Jackson Date: Thu, 15 Sep 2011 11:23:08 -0700 Subject: notifiers: Rename run and wait functions. It makes more sense to call nln_notifier_run() and nln_notifier_wait() simply nln_run() and nln_wait() since they don't operate on notifiers but the entire nln object. This patch changes the nln and the rtnetlink-link modules to the new convention. --- lib/route-table.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/route-table.c') diff --git a/lib/route-table.c b/lib/route-table.c index de335f57..c8245dfd 100644 --- a/lib/route-table.c +++ b/lib/route-table.c @@ -199,8 +199,8 @@ void route_table_run(void) { if (nln) { - rtnetlink_link_notifier_run(); - nln_notifier_run(nln); + rtnetlink_link_run(); + nln_run(nln); } } @@ -209,8 +209,8 @@ void route_table_wait(void) { if (nln) { - rtnetlink_link_notifier_wait(); - nln_notifier_wait(nln); + rtnetlink_link_wait(); + nln_wait(nln); } } -- cgit v1.2.3