diff options
author | Sergey Matveychuk <sem@FreeBSD.org> | 2005-04-03 05:50:34 +0000 |
---|---|---|
committer | Sergey Matveychuk <sem@FreeBSD.org> | 2005-04-03 05:50:34 +0000 |
commit | 265af0b55ff901388b70218aced96e1a81c074af (patch) | |
tree | 28c4ed12c50f3e671af78717f7ee4c77d555ba34 /mail/akpop3d | |
parent | 6468af5ab8e628fed127a8ee86f9821ae96475f9 (diff) | |
download | ports-265af0b55ff901388b70218aced96e1a81c074af.tar.gz ports-265af0b55ff901388b70218aced96e1a81c074af.zip |
Notes
Diffstat (limited to 'mail/akpop3d')
-rw-r--r-- | mail/akpop3d/Makefile | 4 | ||||
-rw-r--r-- | mail/akpop3d/distinfo | 4 | ||||
-rw-r--r-- | mail/akpop3d/files/patch-authenticate.c | 11 |
3 files changed, 4 insertions, 15 deletions
diff --git a/mail/akpop3d/Makefile b/mail/akpop3d/Makefile index ec246593a559..8a48111c0c07 100644 --- a/mail/akpop3d/Makefile +++ b/mail/akpop3d/Makefile @@ -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} diff --git a/mail/akpop3d/distinfo b/mail/akpop3d/distinfo index 4165fa122e52..bd22de2c8e94 100644 --- a/mail/akpop3d/distinfo +++ b/mail/akpop3d/distinfo @@ -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 diff --git a/mail/akpop3d/files/patch-authenticate.c b/mail/akpop3d/files/patch-authenticate.c deleted file mode 100644 index 41de987f83b7..000000000000 --- a/mail/akpop3d/files/patch-authenticate.c +++ /dev/null @@ -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); |