diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-02-07 20:37:11 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-02-07 20:37:11 +0000 |
commit | e07385f85318b01f9d3a3a752436742e83f3e953 (patch) | |
tree | ea2b36317de28fb6f2940f1f17cf279794b00e65 /lib/smtp.h | |
parent | 86dfcf737d1b05c7c731f098ff8c0e0ab87040fa (diff) | |
download | curl-e07385f85318b01f9d3a3a752436742e83f3e953.tar.gz |
smtp: Updated SMTP_AUTH_PASSWD state constant
Changed the SMTP_AUTH_PASSWD state constant to SMTP_AUTH_LOGIN_PASSWD to
better describe the state as the second part of an AUTH LOGIN command,
as well as for consistency with the imap and pop3 modules.
Diffstat (limited to 'lib/smtp.h')
-rw-r--r-- | lib/smtp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/smtp.h b/lib/smtp.h index d926795f5..cb3ef5854 100644 --- a/lib/smtp.h +++ b/lib/smtp.h @@ -38,7 +38,7 @@ typedef enum { (multi mode only) */ SMTP_AUTH_PLAIN, SMTP_AUTH_LOGIN, - SMTP_AUTH_PASSWD, + SMTP_AUTH_LOGIN_PASSWD, SMTP_AUTH_CRAMMD5, SMTP_AUTH_DIGESTMD5, SMTP_AUTH_DIGESTMD5_RESP, |