diff options
author | Ben Greear <greearb@candelatech.com> | 2010-04-02 21:02:35 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-04-02 21:02:35 +0200 |
commit | e7e37a246a2ebd55b8b507e5a3d27744feff6203 (patch) | |
tree | b020467fbc7c37f17b697103719098d8150cc23e /lib/smtp.h | |
parent | 78b284014bf32235722c63deb597cfb9f6a9366d (diff) | |
download | curl-e7e37a246a2ebd55b8b507e5a3d27744feff6203.tar.gz |
fixed compiler warnings
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; }; |