From 9d0ea2b4323bcafd73322cc2b234231273013bcd Mon Sep 17 00:00:00 2001 From: Henning Westerholt Date: Mon, 23 Mar 2020 15:07:42 +0100 Subject: [PATCH] seas: use ip_addr2sbuf instead of (redundant) buf_print_ip --- src/modules/seas/event_dispatcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/seas/event_dispatcher.c b/src/modules/seas/event_dispatcher.c index 6031310aa16..e1c7047beb4 100644 --- a/src/modules/seas/event_dispatcher.c +++ b/src/modules/seas/event_dispatcher.c @@ -850,7 +850,7 @@ int process_bind_action(as_p as,unsigned char processor_id,unsigned int flags,ch memcpy(&port,payload+k,2); k+=2; port=ntohs(port); - buf_print_ip(buffer, &my_addr,300); + ip_addr2sbuf(&my_addr,buffer,300); switch(proto){ case PROTO_UDP: proto_s="UDP";