1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Security fix for usage of format string.

This commit is contained in:
Yoichi NAKAYAMA 2005-02-13 03:19:13 +00:00
parent b25b01dd33
commit ece7c26384
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=128665
2 changed files with 20 additions and 1 deletions

View File

@ -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

View File

@ -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);
}