From cb3d88247b40992e4eb827c9b5ddb6099fad6ea9 Mon Sep 17 00:00:00 2001 From: henri Date: Tue, 30 Oct 2012 09:45:14 +0000 Subject: [PATCH] Fixed function name in error message. --- nsock/src/nsock_write.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nsock/src/nsock_write.c b/nsock/src/nsock_write.c index 6dcaf3887..4b1314c15 100644 --- a/nsock/src/nsock_write.c +++ b/nsock/src/nsock_write.c @@ -83,7 +83,7 @@ nsock_event_id nsock_sendto(nsock_pool ms_pool, nsock_iod ms_iod, nsock_ev_handl #if HAVE_IPV6 sin6->sin6_port = htons(port); #else - fatal("IPv6 address passed to nsock_connect_* call, but nsock was not compiled w/IPv6 support"); + fatal("IPv6 address passed to %s call, but nsock was not compiled w/IPv6 support", __func__); #endif }