diff options
author | Dave Barach <dave@barachs.net> | 2020-08-06 12:10:09 -0400 |
---|---|---|
committer | Dave Barach <dave@barachs.net> | 2020-08-06 12:10:50 -0400 |
commit | 11fb09e38ffcbadc2629361377413f3ce12ec4da (patch) | |
tree | 65d2a0a16b6e1fce5bec0dba1368dca5db3bc9e3 /src/plugins/lb/api.c | |
parent | 586462fabcc913a5a4fa9115d4b5caf33dfdb347 (diff) |
misc: harmonize names
Type: fix
Signed-off-by: Dave Barach <dave@barachs.net>
Change-Id: Ibad744788e200ce012ad88ff59c2c34920742454
Diffstat (limited to 'src/plugins/lb/api.c')
-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 0fed63f19f8..253cf5b5ba8 100644 --- a/src/plugins/lb/api.c +++ b/src/plugins/lb/api.c @@ -242,7 +242,7 @@ vl_api_lb_vip_dump_t_handler /* construct vip list */ pool_foreach(vip, lbm->vips, { - /* Hide dummy VIP */ + /* Hide placeholder VIP */ if (vip != lbm->vips) { msg_size = sizeof (*rmp); rmp = vl_msg_api_alloc (msg_size); @@ -281,7 +281,7 @@ static void send_lb_as_details lb_as_t *as; pool_foreach(as_index, vip->as_indexes, { - /* Hide dummy As for specific VIP */ + /* Hide placeholder As for specific VIP */ if (*as_index != 0) { as = &lbm->ass[*as_index]; msg_size = sizeof (*rmp); |