diff options
author | clement <clement@FreeBSD.org> | 2004-01-19 05:06:55 +0800 |
---|---|---|
committer | clement <clement@FreeBSD.org> | 2004-01-19 05:06:55 +0800 |
commit | b02738ec54a27aba7984d1c1d33a994e366442f1 (patch) | |
tree | fd5a0241b607ff078be0c8d355d971f88af2237f /mail/libesmtp/files | |
parent | eece17459c6230b2977ee73ab784845b799bc4e8 (diff) | |
download | freebsd-ports-gnome-b02738ec54a27aba7984d1c1d33a994e366442f1.tar.gz freebsd-ports-gnome-b02738ec54a27aba7984d1c1d33a994e366442f1.tar.zst freebsd-ports-gnome-b02738ec54a27aba7984d1c1d33a994e366442f1.zip |
- Add memrchr().
- Maintainer informed.
Requested by: many
Diffstat (limited to 'mail/libesmtp/files')
-rw-r--r-- | mail/libesmtp/files/patch-smtp-tls.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mail/libesmtp/files/patch-smtp-tls.c b/mail/libesmtp/files/patch-smtp-tls.c new file mode 100644 index 000000000000..391b58573aa1 --- /dev/null +++ b/mail/libesmtp/files/patch-smtp-tls.c @@ -0,0 +1,23 @@ +--- 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 |