commit - c519ba9920d2d9b12016d0825382cd236219112c
commit + 414bfe65ebe8ac1076476b25ed0bb91faad74f47
blob - e57aa2423a3eea2bbdacea0500fe9e3452ddb0bf
blob + fd175971a16d9b48a546efa94df84dc8ff39ebc5
--- src/ngircd/conn.c
+++ src/ngircd/conn.c
Client_SetHostname(c, readbuf);
if (Conf_NoticeAuth)
(void)Conn_WriteStr(i,
- "NOTICE AUTH :*** Found your hostname");
+ "NOTICE AUTH :*** Found your hostname: %s",
+ My_Connections[i].host);
#ifdef IDENTAUTH
++identptr;
if (*identptr) {
}
if (Conf_NoticeAuth) {
(void)Conn_WriteStr(i,
- "NOTICE AUTH :*** Got %sident response",
- *ptr ? "invalid " : "");
+ "NOTICE AUTH :*** Got %sident response%s%s",
+ *ptr ? "invalid " : "",
+ *ptr ? "" : ": ",
+ *ptr ? "" : identptr);
}
} else {
Log(LOG_INFO, "IDENT lookup for connection %d: no result.", i);