diff options
author | Hongjun Ni <hongjun.ni@intel.com> | 2018-06-08 02:20:31 +0800 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2018-06-08 07:27:24 +0000 |
commit | bedc1ca8c4e8c552ea27b34485b4352f91743593 (patch) | |
tree | 17b5cfefdeba721544a20f5b254eb40582b9a552 /src/plugins/lb | |
parent | 3c22affe8b1c60b4d34a387331251f44c3db4fd3 (diff) |
LB: reply message id and table length are wrong.
Change-Id: Iea2c661cb3e0728bb2d10b06791ed84fed00f6a7
Signed-off-by: Hongjun Ni <hongjun.ni@intel.com>
Diffstat (limited to 'src/plugins/lb')
-rw-r--r-- | src/plugins/lb/api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/lb/api.c b/src/plugins/lb/api.c index 157bf318eae..afaf61c459a 100644 --- a/src/plugins/lb/api.c +++ b/src/plugins/lb/api.c @@ -154,7 +154,7 @@ vl_api_lb_add_del_vip_t_handler rv = lb_vip_add(args, &vip_index); } - REPLY_MACRO (VL_API_LB_CONF_REPLY); + REPLY_MACRO (VL_API_LB_ADD_DEL_VIP_REPLY); } static void *vl_api_lb_add_del_vip_t_print @@ -217,7 +217,7 @@ vl_api_lb_add_del_as_t_handler rv = lb_vip_add_ass(vip_index, &as_address, 1); done: - REPLY_MACRO (VL_API_LB_CONF_REPLY); + REPLY_MACRO (VL_API_LB_ADD_DEL_AS_REPLY); } static void *vl_api_lb_add_del_as_t_print |