From 9a585e62cdaf60240e842950599003df2a211614 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sat, 17 May 1997 20:55:49 +0000 Subject: Cleanup. svn path=/trunk/; revision=1018 --- imap.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/imap.c b/imap.c index b887f94a..1bc57998 100644 --- a/imap.c +++ b/imap.c @@ -185,8 +185,8 @@ static int imap_is_old(int sock, struct query *ctl, int number) return(seen); } -static int imap_fetch_headers(int sock, struct query *ctl, int number, int *lenp) -/* request nth message */ +static int imap_fetch_headers(int sock, struct query *ctl,int number,int *lenp) +/* request headers of nth message */ { char buf [POPBUFSIZE+1]; int num; @@ -196,7 +196,7 @@ static int imap_fetch_headers(int sock, struct query *ctl, int number, int *lenp /* * This is blessed by RFC 1176, RFC1730, RFC2060. - * it should *not* set the \Seen flag. + * According to the RFCs, it should *not* set the \Seen flag. */ gen_send(sock, "FETCH %d RFC822.HEADER", number); @@ -216,7 +216,7 @@ static int imap_fetch_headers(int sock, struct query *ctl, int number, int *lenp } static int imap_fetch_body(int sock, struct query *ctl, int number, int *lenp) -/* request headers of nth message */ +/* request body of nth message */ { char buf [POPBUFSIZE+1]; int num; -- cgit v1.2.3