On Tue, 1 Aug 2017 18:54:33 +0200 Florian Lehner <[email protected]> wrote:
> - if (a->family == AF_INET) {
> - if (a->data[0] == 0) {
> + if (a->data[0] == 0) {
> buf[0] = '*';
> buf[1] = 0;
This won't work right with IPv6 you need to look at the whole address being 0
not just a->data[0]
