diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-11-03 18:39:11 +0100 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-11-03 18:39:11 +0100 |
commit | 76f43ce583177c6d35948c18493cee9978f075b3 (patch) | |
tree | 304292896a749e03be5a5f8a67a55d78934795c7 /src/common | |
parent | 7d664e755eb8bf8226695a735a631124421edc7a (diff) |
Make identd messages consistent with SASL messages
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/identd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/identd.c b/src/common/identd.c index f413c8ae..e6fe8cb3 100644 --- a/src/common/identd.c +++ b/src/common/identd.c @@ -58,7 +58,7 @@ identd (char *username) identd_is_running = FALSE; - snprintf (outbuf, sizeof (outbuf), "%%\tServicing ident request from %s with user name \"%s\"\n", + snprintf (outbuf, sizeof (outbuf), "%%\tServicing ident request from %s as %s\n", inet_ntoa (addr.sin_addr), username); PrintText (current_sess, outbuf); @@ -143,7 +143,7 @@ identd_ipv6 (char *username) snprintf (ipv6buf, sizeof (ipv6buf) - 1, "[SOCKET ERROR: 0x%X]", WSAGetLastError ()); } - snprintf (outbuf, sizeof (outbuf), "%%\tServicing ident request from %s with user name \"%s\"\n", ipv6buf, username); + snprintf (outbuf, sizeof (outbuf), "%%\tServicing ident request from %s as %s\n", ipv6buf, username); PrintText (current_sess, outbuf); recv (read_sok, buf, sizeof (buf) - 1, 0); |