* IMAP FETCH BODY<xxx.yyy> was outputting the offset and length in the
authorArt Cancro <ajc@citadel.org>
Sat, 8 Nov 2003 06:46:09 +0000 (06:46 +0000)
committerArt Cancro <ajc@citadel.org>
Sat, 8 Nov 2003 06:46:09 +0000 (06:46 +0000)
  wrong order.  Fixed.

citadel/ChangeLog
citadel/imap_fetch.c

index e41eafbffd98ca93d4df9ad60d779b7138bb9d33..c5bd494c4f10091b829f1e3d5bf345e90c6d0009 100644 (file)
@@ -1,4 +1,8 @@
  $Log$
+ Revision 611.3  2003/11/08 06:46:08  ajc
+ * IMAP FETCH BODY<xxx.yyy> was outputting the offset and length in the
+   wrong order.  Fixed.
+
  Revision 611.2  2003/11/08 06:29:47  ajc
  * IMAP FETCH FLAGS ... removed extra trailing space after last flag
 
@@ -5065,3 +5069,4 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import
+
index b23768b869d3bcbcefb036031b94a8c74ce69cfc..db543c89420a93c37ff3266832101d07bc142915 100644 (file)
@@ -536,8 +536,8 @@ void imap_fetch_body(long msgnum, char *item, int is_peek,
                }
                fseek(tmp, pstart, SEEK_SET);
                bytes_remaining = pbytes;
-               cprintf("BODY[%s] {%ld}<%ld>\r\n",
-                       section, bytes_remaining, pstart);
+               cprintf("BODY[%s]<%ld> {%ld}\r\n",
+                       section, pstart, bytes_remaining);
        }
 
        blocksize = sizeof(buf);