summaryrefslogtreecommitdiffstats
path: root/lib/zclient.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2023-11-23 15:08:32 +0100
committerDavid Lamparter <equinox@opensourcerouting.org>2023-11-23 15:20:11 +0100
commita13d2933b755e159f78251d6a790eb153c6500fb (patch)
treed286139aba2ecf0d66af68b63630265e360685d0 /lib/zclient.c
parentlib: remove `.receive_notify` zclient option (diff)
downloadfrr-a13d2933b755e159f78251d6a790eb153c6500fb.tar.xz
frr-a13d2933b755e159f78251d6a790eb153c6500fb.zip
zebra, lib: remove notify field from hello message
This is no longer used. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/zclient.c')
-rw-r--r--lib/zclient.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/zclient.c b/lib/zclient.c
index 47ce111b3..39756933e 100644
--- a/lib/zclient.c
+++ b/lib/zclient.c
@@ -392,7 +392,6 @@ enum zclient_send_status zclient_send_hello(struct zclient *zclient)
stream_putc(s, zclient->redist_default);
stream_putw(s, zclient->instance);
stream_putl(s, zclient->session_id);
- stream_putc(s, 0); /* receive_notify - removed */
if (zclient->synchronous)
stream_putc(s, 1);
else