From ee79ccea45ea886d7c9f894253dcc0f0bc3c3db9 Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Mon, 4 Apr 2016 13:23:50 +0200 Subject: [PATCH] Improve bind-ip error message @ link --- src/s_bsd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/s_bsd.c b/src/s_bsd.c index 13d0d3864..0cfe8d517 100644 --- a/src/s_bsd.c +++ b/src/s_bsd.c @@ -1621,7 +1621,8 @@ int connect_inet(ConfigItem_link *aconf, aClient *cptr) { if (!unreal_bind(cptr->fd, bindip, 0, IsIPV6(cptr))) { - report_baderror("error binding to local port for %s:%s", cptr); + report_baderror("Error binding to local port for %s:%s -- " + "Your link::outgoing::bind-ip is probably incorrect.", cptr); return 0; } }