diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-05-17 20:55:49 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-05-17 20:55:49 +0000 |
commit | 9a585e62cdaf60240e842950599003df2a211614 (patch) | |
tree | c35c587f0cbebf6ca963774e5a2002da702d6af1 | |
parent | 88b00ff0ca283e8c2e80587a1f05e01b922c9b89 (diff) | |
download | fetchmail-9a585e62cdaf60240e842950599003df2a211614.tar.gz fetchmail-9a585e62cdaf60240e842950599003df2a211614.tar.bz2 fetchmail-9a585e62cdaf60240e842950599003df2a211614.zip |
Cleanup.
svn path=/trunk/; revision=1018
-rw-r--r-- | imap.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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; |