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
  • Loading branch information
rfuchs committed Sep 4, 2024
1 parent 1d18f4a commit 2acf5a6
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 @@ -474,7 +474,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 2acf5a6

Please sign in to comment.