diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-02-06 22:22:57 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-02-06 22:22:57 +0000 |
commit | cecb9c0f71b757444f40a15a1cf4f0e95af05af2 (patch) | |
tree | ad8570c6fb950a710f7487b5a8100253287e8042 /lib/imap.h | |
parent | 632e50ca8d71a309ea3863acac5f1a7f88633e69 (diff) | |
download | curl-cecb9c0f71b757444f40a15a1cf4f0e95af05af2.tar.gz |
imap: Small variable rename in preparation for upcoming change
Renamed a couple of variables and updated some comments in
preparation for upcoming command id / response tag change.
Diffstat (limited to 'lib/imap.h')
-rw-r--r-- | lib/imap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/imap.h b/lib/imap.h index b37cdab83..4a276c151 100644 --- a/lib/imap.h +++ b/lib/imap.h @@ -59,8 +59,8 @@ struct imap_conn { unsigned int authmechs; /* Accepted authentication mechanisms */ unsigned int authused; /* Auth mechanism used for the connection */ imapstate state; /* Always use imap.c:state() to change state! */ - int cmdid; /* Next command ID */ - const char *idstr; /* String based response ID to wait for */ + int cmdid; /* Last used command ID */ + const char *resptag; /* Response tag to wait for */ bool ssldone; /* Is connect() over SSL done? */ bool login_disabled; /* LOGIN command explicitly disabled by server */ }; |