From 7f1e6ab1edf0bc5cb5de47431191942d5d0ca0de Mon Sep 17 00:00:00 2001 From: Nick Hainke Date: Sun, 31 Jan 2021 20:01:54 +0100 Subject: [PATCH] fix comments --- babeld/src/ubus.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/babeld/src/ubus.c b/babeld/src/ubus.c index 29ad00d..d1909c7 100644 --- a/babeld/src/ubus.c +++ b/babeld/src/ubus.c @@ -379,7 +379,7 @@ void ubus_notify_route(struct babel_route *route, int kind) { void ubus_notify_xroute(struct xroute *xroute, int kind) { struct blob_buf b = {0}; - char method[50]; // possible methods are route.change, route.add, route.flush + char method[50]; // possible methods are xroute.change, xroute.add, xroute.flush if (!babeld_object.has_subscribers) return; @@ -398,7 +398,7 @@ void ubus_notify_xroute(struct xroute *xroute, int kind) { void ubus_notify_neighbour(struct neighbour *neigh, int kind) { struct blob_buf b = {0}; - char method[50]; // possible methods are route.change, route.add, route.flush + char method[50]; // possible methods are neigh.change, neigh.add, neigh.flush if (!babeld_object.has_subscribers) return;