From 72f3242ac1d0d3e907111ce91085ce87e047bd75 Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 13 Jan 2015 19:07:11 +0000 Subject: [PATCH] - scan.c:scan_manual(): fixes to previous commit git-svn-id: svn://svn.ircd-hybrid.org/svnroot/hopm/trunk@5377 82007160-df01-0410-b94d-b575c5fd34c7 --- src/scan.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/scan.c b/src/scan.c index acbe99c..bb1f82f 100644 --- a/src/scan.c +++ b/src/scan.c @@ -900,7 +900,8 @@ scan_manual(char *param, const struct ChannelConf *target) /* IP = the resolved IP now (it was the ip OR hostname before) */ if ((ip = inet_ntop(AF_INET, addr, buf, sizeof(buf))) == NULL) { - irc_send("PRIVMSG %s :CHECK -> invalid address: %s", strerror(errno)); + irc_send("PRIVMSG %s :CHECK -> invalid address: %s", + target->name, strerror(errno)); return; } -- 2.30.2