diff options
author | 2013-08-12 09:43:45 +0200 | |
---|---|---|
committer | 2013-08-12 09:43:45 +0200 | |
commit | cada23f308e3869ceb5c75f164d249448dfaec07 (patch) | |
tree | 97c7aebcad0eb2a93a7519251a01f5be9255ee75 /tools | |
parent | KVM: s390: fix pfmf non-quiescing control handling (diff) | |
parent | arm64: KVM: use 'int' instead of 'u32' for variable 'target' in kvm_host.h. (diff) | |
download | wireguard-linux-cada23f308e3869ceb5c75f164d249448dfaec07.tar.xz wireguard-linux-cada23f308e3869ceb5c75f164d249448dfaec07.zip |
Merge branch 'kvm-arm64/fixes-3.11-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into kvm-master
Diffstat (limited to 'tools')
-rw-r--r-- | tools/hv/hv_kvp_daemon.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/hv/hv_kvp_daemon.c b/tools/hv/hv_kvp_daemon.c index ca9fa4d32e07..07819bfa7dba 100644 --- a/tools/hv/hv_kvp_daemon.c +++ b/tools/hv/hv_kvp_daemon.c @@ -1026,9 +1026,10 @@ kvp_get_ip_info(int family, char *if_name, int op, if (sn_offset == 0) strcpy(sn_str, cidr_mask); - else + else { + strcat((char *)ip_buffer->sub_net, ";"); strcat(sn_str, cidr_mask); - strcat((char *)ip_buffer->sub_net, ";"); + } sn_offset += strlen(sn_str) + 1; } |