diff options
| author | Hiroki Shirokura <slank.dev@gmail.com> | 2020-02-04 06:56:40 +0000 | 
|---|---|---|
| committer | Hiroki Shirokura <slank.dev@gmail.com> | 2020-02-14 00:13:43 +0000 | 
| commit | 45a06b11a686054cf885f61795a71081dafac9c5 (patch) | |
| tree | 25abdc96cb0531e759057ebbeac20b7d5bb304f3 /tests/bgpd/test_mp_attr.c | |
| parent | e5d4cda0a7bcc0c0ccbd7d6c11dfa63dfa43ff1c (diff) | |
bgpd: refactor func prototype arround Prefix-SID
mp_update value isn't used by the function arround Prefix-SID.
Signed-off-by: Hiroki Shirokura <slank.dev@gmail.com>
Diffstat (limited to 'tests/bgpd/test_mp_attr.c')
| -rw-r--r-- | tests/bgpd/test_mp_attr.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bgpd/test_mp_attr.c b/tests/bgpd/test_mp_attr.c index c97ea57150..d46dd8864e 100644 --- a/tests/bgpd/test_mp_attr.c +++ b/tests/bgpd/test_mp_attr.c @@ -1027,7 +1027,7 @@ static void parse_test(struct peer *peer, struct test_segment *t, int type)  		parse_ret = bgp_mp_unreach_parse(&attr_args, &nlri);  		break;  	case BGP_ATTR_PREFIX_SID: -		parse_ret = bgp_attr_prefix_sid(&attr_args, &nlri); +		parse_ret = bgp_attr_prefix_sid(&attr_args);  		break;  	default:  		printf("unknown type");  | 
