diff options
author | dinoex <dinoex@FreeBSD.org> | 2003-09-18 15:18:28 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2003-09-18 15:18:28 +0800 |
commit | 1e92c0ef4db6e6088ac204e1146a9181ef7a1ead (patch) | |
tree | b5ff6107e798b8128f9e385d06a6a650cb523d1d /mail/sendmail-old | |
parent | abd6b6cae27d01cbf102aa53eaed8115623341cf (diff) | |
download | freebsd-ports-gnome-1e92c0ef4db6e6088ac204e1146a9181ef7a1ead.tar.gz freebsd-ports-gnome-1e92c0ef4db6e6088ac204e1146a9181ef7a1ead.tar.zst freebsd-ports-gnome-1e92c0ef4db6e6088ac204e1146a9181ef7a1ead.zip |
- Add Security fix
http://www.sendmail.org/parse8.359.2.8.html
Approved by: marcus (portmgr)
Diffstat (limited to 'mail/sendmail-old')
-rw-r--r-- | mail/sendmail-old/Makefile | 1 | ||||
-rw-r--r-- | mail/sendmail-old/files/patch-parseaddr.c | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/mail/sendmail-old/Makefile b/mail/sendmail-old/Makefile index 88523cd8f5f0..98c5f7584c6a 100644 --- a/mail/sendmail-old/Makefile +++ b/mail/sendmail-old/Makefile @@ -7,6 +7,7 @@ PORTNAME= sendmail PORTVERSION= 8.11.7 +PORTREVISION= 1 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.sendmail.org/pub/sendmail/ \ ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/mail/sendmail/&,} diff --git a/mail/sendmail-old/files/patch-parseaddr.c b/mail/sendmail-old/files/patch-parseaddr.c new file mode 100644 index 000000000000..b6fd6fffff0a --- /dev/null +++ b/mail/sendmail-old/files/patch-parseaddr.c @@ -0,0 +1,15 @@ +diff -u -r8.359.2.8 parseaddr.c +--- sendmail/parseaddr.c 3 Apr 2003 16:20:54 -0000 8.359.2.8 ++++ sendmail/parseaddr.c 16 Sep 2003 18:06:22 -0000 +@@ -700,7 +700,11 @@ + addr[MAXNAME] = '\0'; + returnnull: + if (delimptr != NULL) ++ { ++ if (p > addr) ++ --p; + *delimptr = p; ++ } + CurEnv->e_to = saveto; + return NULL; + } |