diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-07-29 14:50:17 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-07-29 14:50:17 -0400 |
commit | 9c5891bd4342349a200676d33f742dd1b864822c (patch) | |
tree | b14c1698f2d8ce5276e1befd562f6398a46b48b9 /tools/hv | |
parent | ecda040ff3724f021a96491ecee88d48e968c153 (diff) | |
parent | 5ae90d8e467e625e447000cb4335c4db973b1095 (diff) |
Merge 3.11-rc3 into char-misc-next.
This resolves a merge issue with:
drivers/misc/mei/init.c
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/hv')
-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, | |||
1026 | 1026 | ||
1027 | if (sn_offset == 0) | 1027 | if (sn_offset == 0) |
1028 | strcpy(sn_str, cidr_mask); | 1028 | strcpy(sn_str, cidr_mask); |
1029 | else | 1029 | else { |
1030 | strcat((char *)ip_buffer->sub_net, ";"); | ||
1030 | strcat(sn_str, cidr_mask); | 1031 | strcat(sn_str, cidr_mask); |
1031 | strcat((char *)ip_buffer->sub_net, ";"); | 1032 | } |
1032 | sn_offset += strlen(sn_str) + 1; | 1033 | sn_offset += strlen(sn_str) + 1; |
1033 | } | 1034 | } |
1034 | 1035 | ||