1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Fix security risk for setuid news programs.

PR:		ports/70773
Submitted by:	maintainer
This commit is contained in:
Kirill Ponomarev 2004-08-21 15:03:54 +00:00
parent 2dca57fcd0
commit e091445997
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=116952
2 changed files with 13 additions and 0 deletions

View File

@ -6,6 +6,7 @@
PORTNAME= fidogate
PORTVERSION= 5.1.1
PORTREVISION= 1
CATEGORIES= news mail
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= rusfidogate

View File

@ -0,0 +1,12 @@
--- src/common/log.c.old Sat Aug 21 17:21:16 2004
+++ src/common/log.c Sat Aug 21 17:21:24 2004
@@ -276,9 +276,4 @@
char *p;
BUF_COPY(logprog, name);
-
- if( (p = getenv("LOGFILE")) )
- log_file(p);
- if( (p = getenv("FIDOGATE_LOGFILE")) )
- log_file(p);
}