summaryrefslogtreecommitdiff
path: root/mail/akpop3d/files/patch-authenticate.c
diff options
context:
space:
mode:
authorSergey Matveychuk <sem@FreeBSD.org>2005-04-03 05:50:34 +0000
committerSergey Matveychuk <sem@FreeBSD.org>2005-04-03 05:50:34 +0000
commit265af0b55ff901388b70218aced96e1a81c074af (patch)
tree28c4ed12c50f3e671af78717f7ee4c77d555ba34 /mail/akpop3d/files/patch-authenticate.c
parentRemove BROKEN tag on amd64, port was already fixed. (diff)
- 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>
Diffstat (limited to '')
-rw-r--r--mail/akpop3d/files/patch-authenticate.c11
1 files changed, 0 insertions, 11 deletions
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);