aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2005-07-31 13:23:46 +0000
committerMatthias Andree <matthias.andree@gmx.de>2005-07-31 13:23:46 +0000
commit38ef894b8f693965f6d3ec72e345f0308b456112 (patch)
tree3f6491d89f2c13f6634f8b8b0eabd1be235e082b
parenta34f32bbd8379b20fa8d43afdb9c7d551157577b (diff)
downloadfetchmail-38ef894b8f693965f6d3ec72e345f0308b456112.tar.gz
fetchmail-38ef894b8f693965f6d3ec72e345f0308b456112.tar.bz2
fetchmail-38ef894b8f693965f6d3ec72e345f0308b456112.zip
Add comment.
svn path=/trunk/; revision=4206
-rw-r--r--pop3.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/pop3.c b/pop3.c
index 1c0eaaf9..3ea79fb2 100644
--- a/pop3.c
+++ b/pop3.c
@@ -665,7 +665,9 @@ static int parseuid(const char *buf, unsigned long *gotnum, char *id, size_t ids
return PS_SUCCESS;
}
-static int pop3_getuidl(int sock, int num , char *id, size_t idsize)
+/** request UIDL for single message \a num and stuff the result into the
+ * buffer \a id which can hold \a idsize bytes */
+static int pop3_getuidl(int sock, int num, char *id /** output */, size_t idsize)
{
int ok;
char buf [POPBUFSIZE+1];