diff options
author | Marcus Alves Grando <mnag@FreeBSD.org> | 2006-04-08 18:24:18 +0000 |
---|---|---|
committer | Marcus Alves Grando <mnag@FreeBSD.org> | 2006-04-08 18:24:18 +0000 |
commit | ac08ee6091975a2b871c18760d093681c0fba5f7 (patch) | |
tree | 1e2f4d48228c4cd816f3d7b6063c95de2fca0c8c /mail/dbmail21/files/patch-2.0.7_003 | |
parent | - remove omf directory [1] (diff) |
- Update to 2.0.10
PR: 95457
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=159143
Diffstat (limited to 'mail/dbmail21/files/patch-2.0.7_003')
-rw-r--r-- | mail/dbmail21/files/patch-2.0.7_003 | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/mail/dbmail21/files/patch-2.0.7_003 b/mail/dbmail21/files/patch-2.0.7_003 deleted file mode 100644 index 1b83d01d5dca..000000000000 --- a/mail/dbmail21/files/patch-2.0.7_003 +++ /dev/null @@ -1,25 +0,0 @@ ---- 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__, |