diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-03-03 13:13:59 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-03-03 13:13:59 +0000 |
commit | b1ebf4bda110dda64b89bffcf7286dda908d3689 (patch) | |
tree | d64cbb70b98a37adae266b78ed81580d2d718a78 | |
parent | 284ea5f924f002038b0dcfd5b2ca3ff1e238a818 (diff) |
imap: Fixed typo in variable assignment
-rw-r--r-- | lib/imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/imap.c b/lib/imap.c index f1566b361..6ed887abe 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -1928,7 +1928,7 @@ static CURLcode imap_logout(struct connectdata *conn) */ static CURLcode imap_disconnect(struct connectdata *conn, bool dead_connection) { - struct imap_conn *imapc= &conn->proto.imapc; + struct imap_conn *imapc = &conn->proto.imapc; /* We cannot send quit unconditionally. If this connection is stale or bad in any way, sending quit and waiting around here will make the |