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.
This commit is contained in:
Steve Holme
2013-02-23 21:43:59 +00:00
parent 04456a74d0
commit e0cbfe825d
2 changed files with 8 additions and 8 deletions

View File

@@ -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 */
};