aboutsummaryrefslogtreecommitdiff
path: root/lib/pop3.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-02-23 21:43:59 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-02-23 21:43:59 +0000
commite0cbfe825d7d08ae2cf4f6a9bfa02d43aa2184d1 (patch)
tree823f76a67be2fe030d64aec3e6865ea966be2ab4 /lib/pop3.h
parent04456a74d06a41e020e96d2f1648586e156150a7 (diff)
downloadgnurl-e0cbfe825d7d08ae2cf4f6a9bfa02d43aa2184d1.tar.gz
gnurl-e0cbfe825d7d08ae2cf4f6a9bfa02d43aa2184d1.tar.bz2
gnurl-e0cbfe825d7d08ae2cf4f6a9bfa02d43aa2184d1.zip
pop3: Refactored the mailbox variable as it didn't reflect it's purpose
Updated the mailbox variable to correctly reflect it's purpose. The name mailbox was a leftover from when IMAP and POP3 support was initially added to curl.
Diffstat (limited to 'lib/pop3.h')
-rw-r--r--lib/pop3.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pop3.h b/lib/pop3.h
index 05df8bc6f..459a03d7a 100644
--- a/lib/pop3.h
+++ b/lib/pop3.h
@@ -59,7 +59,7 @@ typedef enum {
struct POP3 {
curl_off_t *bytecountp;
curl_pp_transfer transfer;
- char *mailbox; /* Message ID */
+ char *id; /* Message ID */
char *custom; /* Custom Request */
};