diff options
Diffstat (limited to 'lib/smtp.h')
-rw-r--r-- | lib/smtp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/smtp.h b/lib/smtp.h index fac43041a..4716338b5 100644 --- a/lib/smtp.h +++ b/lib/smtp.h @@ -47,8 +47,8 @@ typedef enum { struct smtp_conn { struct pingpong pp; char *domain; /* what to send in the EHLO */ - int eob; /* number of bytes of the EOB (End Of Body) that has been - received thus far */ + size_t eob; /* number of bytes of the EOB (End Of Body) that has been + received thus far */ smtpstate state; /* always use smtp.c:state() to change state! */ struct curl_slist *rcpt; }; |