summaryrefslogtreecommitdiff
path: root/lib/zclient.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2018-02-23 14:40:46 -0500
committerDonald Sharp <sharpd@cumulusnetworks.com>2018-02-23 14:45:57 -0500
commit28b11f81061b12f599daf8016d948ca59a2f38cc (patch)
treebb101511f4c22ccc5ade43ead28c12d5cbffb2ba /lib/zclient.c
parent9a9f89267a4aaf2904673b204a21e05e0832bbef (diff)
*: Modify notify_owner to route_notify_owner
In the future we are going to have a rule_notify_owner so make the distinction between the two types of notification clearer. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'lib/zclient.c')
-rw-r--r--lib/zclient.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/zclient.c b/lib/zclient.c
index d6a6cee731..d11457a859 100644
--- a/lib/zclient.c
+++ b/lib/zclient.c
@@ -2369,9 +2369,9 @@ static int zclient_read(struct thread *thread)
vrf_id);
break;
case ZEBRA_ROUTE_NOTIFY_OWNER:
- if (zclient->notify_owner)
- (*zclient->notify_owner)(command, zclient,
- length, vrf_id);
+ if (zclient->route_notify_owner)
+ (*zclient->route_notify_owner)(command, zclient, length,
+ vrf_id);
break;
default:
break;