diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-02-23 21:43:59 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-02-23 21:43:59 +0000 |
commit | e0cbfe825d7d08ae2cf4f6a9bfa02d43aa2184d1 (patch) | |
tree | 823f76a67be2fe030d64aec3e6865ea966be2ab4 /lib/pop3.h | |
parent | 04456a74d06a41e020e96d2f1648586e156150a7 (diff) | |
download | curl-e0cbfe825d7d08ae2cf4f6a9bfa02d43aa2184d1.tar.gz |
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.h | 2 |
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 */ }; |