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

- Update to 0.7.6

* Fixed potential problem of SQL injection
  * Fixed problem where privileges weren't dropped correctly
  * Implemented user configurable timeouts
  * Implemented support for RFC 2449 and RFC 3206

PR:		ports/79363
Submitted by:	Andrej Zverev <az@inec.ru>
This commit is contained in:
Sergey Matveychuk 2005-04-03 05:50:34 +00:00
parent 6468af5ab8
commit 265af0b55f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=132316
3 changed files with 4 additions and 15 deletions

View File

@ -6,8 +6,8 @@
#
PORTNAME= akpop3d
PORTVERSION= 0.7.4
PORTREVISION= 1
PORTVERSION= 0.7.7
PORTREVISION= 0
CATEGORIES= mail
MASTER_SITES= http://www.synflood.at/akpop3d/
DISTNAME= ${PORTNAME}-${PORTVERSION}

View File

@ -1,2 +1,2 @@
MD5 (akpop3d-0.7.4.tar.bz2) = fcec0835f8d74c5a13fa589fd69c6669
SIZE (akpop3d-0.7.4.tar.bz2) = 54913
MD5 (akpop3d-0.7.7.tar.bz2) = 3ba404fb452f4452deb206a3074c1b28
SIZE (akpop3d-0.7.7.tar.bz2) = 61497

View File

@ -1,11 +0,0 @@
--- authenticate.c.orig Sun Jan 25 13:49:01 2004
+++ authenticate.c Sun Jan 25 13:49:33 2004
@@ -195,7 +195,7 @@
syslog(LOG_ERR,"%s: %s: %s","failed to read auth file",authfile,strerror(errno));
return 0;
}
- while ((0!=ferror(fptr)) && (0!=feof(fptr))) {
+ while ((!ferror(fptr)) && (!feof(fptr))) {
linebuf[0] = '\0';
if (fgets(linebuf, sizeof(linebuf), fptr) == NULL) {
fclose(fptr);