diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-07-08 21:31:30 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-07-08 21:31:30 +0000 |
commit | 919a712ede442d378c6ad45df827b67e9e6dbd41 (patch) | |
tree | 1786735cae025679db76610722c7a8b41aa1c81d /mail/libesmtp/files/patch-smtp-tls.c | |
parent | Update to 4.0.1 (diff) |
- Update to 1.0.3
PR: ports/68761
Submitted by: John Merryweather Cooper <johnmary@adelphia.net> (maintainer)
Notes
Notes:
svn path=/head/; revision=113235
Diffstat (limited to 'mail/libesmtp/files/patch-smtp-tls.c')
-rw-r--r-- | mail/libesmtp/files/patch-smtp-tls.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/mail/libesmtp/files/patch-smtp-tls.c b/mail/libesmtp/files/patch-smtp-tls.c deleted file mode 100644 index 391b58573aa1..000000000000 --- a/mail/libesmtp/files/patch-smtp-tls.c +++ /dev/null @@ -1,23 +0,0 @@ ---- smtp-tls.c.orig Mon Jan 19 02:36:32 2004 -+++ smtp-tls.c Mon Jan 19 02:41:25 2004 -@@ -450,6 +450,20 @@ - return 1; - } - -+#if defined(__FreeBSD__) -+void * -+memrchr(const void *v, int c, size_t size) -+{ -+ const unsigned char *p = (const unsigned char *) v + size; -+ -+ while (size-- > 0) { -+ if (*--p == c) -+ return (void *) p; -+ } -+ return NULL; -+} -+#endif -+ - /* Perform a domain name comparison where the reference may contain - wildcards. This implements the comparison from RFC 2818. - Each component of the domain name is matched separately, working from |