aboutsummaryrefslogtreecommitdiff
path: root/lib/pop3.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-03-03 11:10:24 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-03-03 11:10:24 +0000
commit711065e4df72a3a6c8828eac30750a95d8d556d0 (patch)
tree1c46c25ba6f5ce30db396c9c71a21bffd2077ce2 /lib/pop3.c
parentee7034800d24edece0623e94d79bdb66e3067c86 (diff)
pop3: Fixed unnecessary parent structure reference
Updated pop3 code following recent imap changes.
Diffstat (limited to 'lib/pop3.c')
-rw-r--r--lib/pop3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pop3.c b/lib/pop3.c
index 6db71d1e6..69638a946 100644
--- a/lib/pop3.c
+++ b/lib/pop3.c
@@ -1547,7 +1547,7 @@ static CURLcode pop3_parse_custom_request(struct connectdata *conn)
CURLcode result = CURLE_OK;
struct SessionHandle *data = conn->data;
struct POP3 *pop3 = data->state.proto.pop3;
- const char *custom = conn->data->set.str[STRING_CUSTOMREQUEST];
+ const char *custom = data->set.str[STRING_CUSTOMREQUEST];
/* URL decode the custom request */
if(custom)