Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 324389
b: refs/heads/master
c: 0d5b6b1
h: refs/heads/master
i:
  324387: 8fd1dc0
v: v3
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Aug 17, 2012
1 parent 0d6eca4 commit 1b1c915
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: af733015c9f59a0993cb9a64e6904aed8612e8b3
refs/heads/master: 0d5b6b197f9b9a58ead8ac5e68e38c068c31ba4c
11 changes: 11 additions & 0 deletions trunk/tools/hv/hv_kvp_daemon.c
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,17 @@ kvp_get_ip_address(int family, char *if_name, int op,
continue;
}

if (op == KVP_OP_GET_IP_INFO) {
/*
* Gather info other than the IP address.
* IP address info will be gathered later.
*/
if (curp->ifa_addr->sa_family == AF_INET)
ip_buffer->addr_family |= ADDR_FAMILY_IPV4;
else
ip_buffer->addr_family |= ADDR_FAMILY_IPV6;
}

error = kvp_process_ip_address(curp->ifa_addr,
curp->ifa_addr->sa_family,
buffer,
Expand Down

0 comments on commit 1b1c915

Please sign in to comment.