diff options
author | Yoichi NAKAYAMA <yoichi@FreeBSD.org> | 2005-02-13 03:19:13 +0000 |
---|---|---|
committer | Yoichi NAKAYAMA <yoichi@FreeBSD.org> | 2005-02-13 03:19:13 +0000 |
commit | ece7c26384c976c121cf9ec1154e75efec949237 (patch) | |
tree | f6cffce4649d8cb752df6a793383326cb3ff1a4b /editors/emacs20 | |
parent | Remove maintainer per his request. Mark BROKEN because of an incomplete (diff) |
Security fix for usage of format string.
Diffstat (limited to 'editors/emacs20')
-rw-r--r-- | editors/emacs20/Makefile | 2 | ||||
-rw-r--r-- | editors/emacs20/files/patch-lib-src::movemail.c | 19 |
2 files changed, 20 insertions, 1 deletions
diff --git a/editors/emacs20/Makefile b/editors/emacs20/Makefile index dbff0df97b26..03c3f0fa35ec 100644 --- a/editors/emacs20/Makefile +++ b/editors/emacs20/Makefile @@ -7,7 +7,7 @@ PORTNAME= emacs PORTVERSION= ${EMACS_VER} -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES+= editors ipv6 MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= emacs diff --git a/editors/emacs20/files/patch-lib-src::movemail.c b/editors/emacs20/files/patch-lib-src::movemail.c new file mode 100644 index 000000000000..6c04c1de3ecf --- /dev/null +++ b/editors/emacs20/files/patch-lib-src::movemail.c @@ -0,0 +1,19 @@ +*** lib-src/movemail.c.orig Sun May 2 18:25:15 1999 +--- lib-src/movemail.c Thu Feb 10 21:38:32 2005 +*************** +*** 765,771 **** + mbx_delimit_begin (mbf); + if (pop_retr (server, i, mbf) != OK) + { +! error (Errmsg); + close (mbfi); + return (1); + } +--- 765,771 ---- + mbx_delimit_begin (mbf); + if (pop_retr (server, i, mbf) != OK) + { +! error ("%s", Errmsg); + close (mbfi); + return (1); + } |