mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
efc03a7db4
1. #266 - Excessive db connects and quits 2. #271 - BUG with connect to postgresql database 3. #272 - Non-UTF characters in a message's body 4. #277 - Fix "INTERNALDATE" calculation in imaputil.c 5. other patches from repository. - Add SHA256 PR: ports/88277 Submitted by: Mark Starovoytov <mark_sf@kikg.ifmo.ru> (maintainer)
26 lines
829 B
Plaintext
26 lines
829 B
Plaintext
--- serverchild.c (revision 1889)
|
|
+++ serverchild.c (revision 1890)
|
|
@@ -312,19 +312,16 @@
|
|
|
|
client.timeoutMsg = info->timeoutMsg;
|
|
client.timeout = info->timeout;
|
|
- strncpy(client.ip, inet_ntoa(saClient.sin_addr),
|
|
- IPNUM_LEN);
|
|
+ strncpy(client.ip, inet_ntoa(saClient.sin_addr), IPNUM_LEN);
|
|
client.clientname[0] = '\0';
|
|
|
|
if (info->resolveIP) {
|
|
- clientHost =
|
|
- gethostbyaddr((char *) &saClient.sin_addr,
|
|
+ clientHost = gethostbyaddr((char *) &saClient.sin_addr,
|
|
sizeof(saClient.sin_addr),
|
|
saClient.sin_family);
|
|
|
|
if (clientHost && clientHost->h_name)
|
|
- strncpy(client.clientname,
|
|
- clientHost->h_name, FIELDSIZE);
|
|
+ strncpy(client.clientname, clientHost->h_name, FIELDSIZE);
|
|
|
|
trace(TRACE_MESSAGE, "%s,%s: incoming connection from [%s (%s)]",
|
|
__FILE__, __func__,
|