aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-09-29 04:20:56 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-09-29 04:20:56 +0800
commit4fccab6c1968979c691a941f767fa5d6b6f09208 (patch)
tree70d57648f9d46e8977f0c3d6c0e2530173ec3ab6
parent5e8ab21b63ba452a92ff174a5df017b8816c30c6 (diff)
downloadgsoc2013-evolution-4fccab6c1968979c691a941f767fa5d6b6f09208.tar
gsoc2013-evolution-4fccab6c1968979c691a941f767fa5d6b6f09208.tar.gz
gsoc2013-evolution-4fccab6c1968979c691a941f767fa5d6b6f09208.tar.bz2
gsoc2013-evolution-4fccab6c1968979c691a941f767fa5d6b6f09208.tar.lz
gsoc2013-evolution-4fccab6c1968979c691a941f767fa5d6b6f09208.tar.xz
gsoc2013-evolution-4fccab6c1968979c691a941f767fa5d6b6f09208.tar.zst
gsoc2013-evolution-4fccab6c1968979c691a941f767fa5d6b6f09208.zip
When getting a literal string response, don't include the \r\n after the
2000-09-28 Jeffrey Stedfast <fejj@helixcode.com> * providers/imap/camel-imap-folder.c (imap_get_message): When getting a literal string response, don't include the \r\n after the closing } (as in: "... {798}\r\n...") * providers/imap/camel-imap-stream.c (stream_read): Same. svn path=/trunk/; revision=5621
-rw-r--r--camel/ChangeLog8
-rw-r--r--camel/providers/imap/camel-imap-folder.c6
-rw-r--r--camel/providers/imap/camel-imap-store.c2
-rw-r--r--camel/providers/imap/camel-imap-stream.c3
4 files changed, 18 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 862789d649..fbf7c83e35 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,11 @@
+2000-09-28 Jeffrey Stedfast <fejj@helixcode.com>
+
+ * providers/imap/camel-imap-folder.c (imap_get_message): When
+ getting a literal string response, don't include the \r\n after
+ the closing } (as in: "... {798}\r\n...")
+
+ * providers/imap/camel-imap-stream.c (stream_read): Same.
+
2000-09-28 Not Zed <NotZed@HelixCode.com>
* camel-mime-utils.c (header_fold): New function to fold headers.
diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c
index 96236d2374..63ef5b31d1 100644
--- a/camel/providers/imap/camel-imap-folder.c
+++ b/camel/providers/imap/camel-imap-folder.c
@@ -626,6 +626,9 @@ imap_get_message (CamelFolder *folder, const gchar *uid, CamelException *ex)
return NULL;
}
+ /* advance to the beginning of the actual data */
+ p++;
+
/* calculate the new part-length */
for (q = p; *q && (q - p) <= part_len; q++) {
if (*q == '\n')
@@ -681,6 +684,9 @@ imap_get_message (CamelFolder *folder, const gchar *uid, CamelException *ex)
return NULL;
}
+ /* advance to the beginning of the actual data */
+ p++;
+
/* calculate the new part-length */
for (q = p; *q && (q - p) <= part_len; q++) {
if (*q == '\n')
diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c
index 698b2ed732..d5fc59b33e 100644
--- a/camel/providers/imap/camel-imap-store.c
+++ b/camel/providers/imap/camel-imap-store.c
@@ -640,7 +640,7 @@ gint
camel_imap_command_extended (CamelImapStore *store, CamelFolder *folder, GPtrArray **ret, CamelException *ex, char *fmt, ...)
{
gint status = CAMEL_IMAP_OK;
- GPtrArray *data;
+ GPtrArray *data = NULL;
GArray *expunged;
gchar *respbuf, *cmdid;
gint recent = 0;
diff --git a/camel/providers/imap/camel-imap-stream.c b/camel/providers/imap/camel-imap-stream.c
index 8c04b75ec9..4e9ee046d7 100644
--- a/camel/providers/imap/camel-imap-stream.c
+++ b/camel/providers/imap/camel-imap-stream.c
@@ -162,6 +162,9 @@ stream_read (CamelStream *stream, char *buffer, size_t n)
return -1;
}
+ /* advance to the beginning of the actual data */
+ p++;
+
/* calculate the new part-length */
for (q = p; *q && (q - p) <= part_len; q++) {
if (*q == '\n')