Skip to content

Commit

Permalink
MT#55283 fix IPv6 XMLRPC callbacks
Browse files Browse the repository at this point in the history
Address must be printed with [] if it's IPv6

Change-Id: I238a774c5fc2b9957b29a325f2c00eb02d840a4b
(cherry picked from commit 2acf5a6)
(cherry picked from commit 86cd5f2)
  • Loading branch information
rfuchs committed Sep 5, 2024
1 parent 6d5261b commit 80b1883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/call.c
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ void kill_calls_timer(GSList *list, const char *url) {

if (url_prefix) {
snprintf(url_buf, sizeof(url_buf), "%s%s%s",
url_prefix, sockaddr_print_buf(cb_addr),
url_prefix, sockaddr_print_p_buf(cb_addr),
url_suffix);
}
else
Expand Down

0 comments on commit 80b1883

Please sign in to comment.