}
if (ctx->num1 > ctx->num2) {
- /* swap, as specified by latest IMAP4rev1 draft */
+ /* swap, as specified by RFC-3501 */
unsigned int temp = ctx->num1;
ctx->num1 = ctx->num2;
ctx->num2 = temp;
return FALSE;
if (num > num2) {
- /* swap, as specified by latest
- IMAP4rev1 draft */
+ /* swap, as specified by RFC-3501 */
unsigned int temp = num;
num = num2;
num2 = temp;
if (!imap_parse_date(search_value, &search_time))
return 0;
- /* NOTE: Latest IMAP4rev1 draft specifies that timezone is ignored
+ /* NOTE: RFC-3501 specifies that timezone is ignored
in searches. sent_time is returned as UTC, so change it. */
if (!message_date_parse(sent_value, sent_value_len,
&sent_time, &timezone_offset))