diff options
author | Philippe Audeoud <jadawin@FreeBSD.org> | 2014-03-04 09:19:33 +0000 |
---|---|---|
committer | Philippe Audeoud <jadawin@FreeBSD.org> | 2014-03-04 09:19:33 +0000 |
commit | ccab5b6d1db3a82acb01a649fbd9854e8241da47 (patch) | |
tree | 315a3ccdbd155b29a60cd708c19b5a517748c707 /mail/dbmail/files | |
parent | sysutils/k3b-kde4: Restore MUSEPACK option with DPorts fix (diff) |
- Update to 3.1.11
PR: ports/187156
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=347000
Diffstat (limited to 'mail/dbmail/files')
-rw-r--r-- | mail/dbmail/files/patch-src_db__dm.c | 15 | ||||
-rw-r--r-- | mail/dbmail/files/patch-src_pop3.c | 20 |
2 files changed, 0 insertions, 35 deletions
diff --git a/mail/dbmail/files/patch-src_db__dm.c b/mail/dbmail/files/patch-src_db__dm.c deleted file mode 100644 index 3430ced2e91a..000000000000 --- a/mail/dbmail/files/patch-src_db__dm.c +++ /dev/null @@ -1,15 +0,0 @@ -diff --git src/dm_db.c b/src/dm_db.c -index 559d83c..529a48e 100644 ---- src/dm_db.c -+++ src/dm_db.c -@@ -1832,7 +1832,9 @@ char * db_get_message_lines(uint64_t message_idnr, long lines) - return NULL; - - msg = dbmail_message_new(NULL); -- msg = dbmail_message_retrieve(msg, physmessage_id); -+ if (! (msg = dbmail_message_retrieve(msg, physmessage_id))) -+ return NULL; -+ - stream = msg->crlf; - - if (lines >=0) { diff --git a/mail/dbmail/files/patch-src_pop3.c b/mail/dbmail/files/patch-src_pop3.c deleted file mode 100644 index 5d021fabdd21..000000000000 --- a/mail/dbmail/files/patch-src_pop3.c +++ /dev/null @@ -1,20 +0,0 @@ -diff --git src/pop3.c src/pop3.c -index 2b8792e..a09524e 100644 ---- src/pop3.c -+++ src/pop3.c -@@ -302,7 +302,6 @@ int pop3_error(ClientSession_T * session, const char *formatstring, ...) - - if (session->error_count >= MAX_ERRORS) { - ci_write(ci, "-ERR too many errors\r\n"); -- client_session_bailout(&session); - return -3; - } - va_start(ap, formatstring); -@@ -314,7 +313,6 @@ int pop3_error(ClientSession_T * session, const char *formatstring, ...) - g_free(s); - - if (ci->client_state & CLIENT_ERR) { -- client_session_bailout(&session); - return -3; - } - |