diff options
| author | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2022-10-29 16:57:34 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-29 16:57:34 -0500 |
| commit | 109fe83ac07dbb72de340f7edfbcecfc4f0e4f06 (patch) | |
| tree | a91cf19db1526a9afb5ccdf7fa2db3ecfe0dc89e /ospfclient/ospfclient.c | |
| parent | 99267afe94eb286cf3f55db4244982022058096a (diff) | |
| parent | d9374552cb2584cb4fdc2da407ba44e141b8436c (diff) | |
Merge pull request #12223 from FRRouting/mergify/bp/dev/8.4/pr-12172
OSPF opaques LSA API - fix bug with LL API delete, add option for zero data length withdrawals (backport #12172)
Diffstat (limited to 'ospfclient/ospfclient.c')
| -rw-r--r-- | ospfclient/ospfclient.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ospfclient/ospfclient.c b/ospfclient/ospfclient.c index 3cfee7d573..edf814184a 100644 --- a/ospfclient/ospfclient.c +++ b/ospfclient/ospfclient.c @@ -98,9 +98,10 @@ static void lsa_delete(struct thread *t) printf("Deleting LSA... "); rc = ospf_apiclient_lsa_delete(oclient, area_id, - atoi(args[2]), /* lsa type */ - atoi(args[3]), /* opaque type */ - atoi(args[4])); /* opaque ID */ + atoi(args[2]), /* lsa type */ + atoi(args[3]), /* opaque type */ + atoi(args[4]), /* opaque ID */ + 0); /* send data in withdrawals */ printf("done, return code is = %d\n", rc); } |
