diff options
Diffstat (limited to 'ospfd/ospf_zebra.c')
| -rw-r--r-- | ospfd/ospf_zebra.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/ospfd/ospf_zebra.c b/ospfd/ospf_zebra.c index 27d74cd4fc..a5372dfc49 100644 --- a/ospfd/ospf_zebra.c +++ b/ospfd/ospf_zebra.c @@ -2161,9 +2161,9 @@ static int ospf_opaque_msg_handler(ZAPI_CALLBACK_ARGS)  	switch (info.type) {  	case LINK_STATE_SYNC: -		STREAM_GETC(s, dst.proto); -		STREAM_GETW(s, dst.instance); -		STREAM_GETL(s, dst.session_id); +		dst.proto = info.src_proto; +		dst.instance = info.src_instance; +		dst.session_id = info.src_session_id;  		dst.type = LINK_STATE_SYNC;  		ret = ospf_te_sync_ted(dst);  		break;  | 
