fixed compiler warnings

This commit is contained in:
Ben Greear 2010-04-02 21:02:35 +02:00 committed by Daniel Stenberg
parent 78b284014b
commit e7e37a246a
3 changed files with 7 additions and 7 deletions

View file

@ -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;
};