diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2005-07-31 13:23:46 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2005-07-31 13:23:46 +0000 |
commit | 38ef894b8f693965f6d3ec72e345f0308b456112 (patch) | |
tree | 3f6491d89f2c13f6634f8b8b0eabd1be235e082b | |
parent | a34f32bbd8379b20fa8d43afdb9c7d551157577b (diff) | |
download | fetchmail-38ef894b8f693965f6d3ec72e345f0308b456112.tar.gz fetchmail-38ef894b8f693965f6d3ec72e345f0308b456112.tar.bz2 fetchmail-38ef894b8f693965f6d3ec72e345f0308b456112.zip |
Add comment.
svn path=/trunk/; revision=4206
-rw-r--r-- | pop3.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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]; |