aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/hv/hv_kvp_daemon.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/hv/hv_kvp_daemon.c b/tools/hv/hv_kvp_daemon.c
index 3dc989f57dc8..13ae098a0114 100644
--- a/tools/hv/hv_kvp_daemon.c
+++ b/tools/hv/hv_kvp_daemon.c
@@ -589,6 +589,17 @@ kvp_get_ip_address(int family, char *if_name, int op,
589 continue; 589 continue;
590 } 590 }
591 591
592 if (op == KVP_OP_GET_IP_INFO) {
593 /*
594 * Gather info other than the IP address.
595 * IP address info will be gathered later.
596 */
597 if (curp->ifa_addr->sa_family == AF_INET)
598 ip_buffer->addr_family |= ADDR_FAMILY_IPV4;
599 else
600 ip_buffer->addr_family |= ADDR_FAMILY_IPV6;
601 }
602
592 error = kvp_process_ip_address(curp->ifa_addr, 603 error = kvp_process_ip_address(curp->ifa_addr,
593 curp->ifa_addr->sa_family, 604 curp->ifa_addr->sa_family,
594 buffer, 605 buffer,