diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2023-11-23 15:08:32 +0100 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2023-11-23 15:20:11 +0100 | 
| commit | a13d2933b755e159f78251d6a790eb153c6500fb (patch) | |
| tree | d286139aba2ecf0d66af68b63630265e360685d0 /zebra/zapi_msg.c | |
| parent | 25a1dccc56a7e544a855bfeda5751c91b53a03fb (diff) | |
zebra, lib: remove notify field from hello message
This is no longer used.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'zebra/zapi_msg.c')
| -rw-r--r-- | zebra/zapi_msg.c | 4 | 
1 files changed, 0 insertions, 4 deletions
diff --git a/zebra/zapi_msg.c b/zebra/zapi_msg.c index 390ebc8f4c..679023fd84 100644 --- a/zebra/zapi_msg.c +++ b/zebra/zapi_msg.c @@ -2376,17 +2376,13 @@ static void zread_hello(ZAPI_HANDLER_ARGS)  	/* type of protocol (lib/zebra.h) */  	uint8_t proto;  	unsigned short instance; -	uint8_t notify;  	uint8_t synchronous;  	uint32_t session_id;  	STREAM_GETC(msg, proto);  	STREAM_GETW(msg, instance);  	STREAM_GETL(msg, session_id); -	STREAM_GETC(msg, notify);  	STREAM_GETC(msg, synchronous); -	if (notify) -		client->notify_owner = true;  	if (synchronous)  		client->synchronous = true;  | 
