diff options
author | Ben Greear <greearb@candelatech.com> | 2010-03-28 08:45:16 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-03-29 16:03:38 +0200 |
commit | 3ec7543007d8f846e77e9e9d23de74be15a2b41f (patch) | |
tree | 7c5615b2c89bab9057a9e59b6b45b1fcb7af42e8 /lib/smtp.h | |
parent | 604a2bdac87dc2b12afe4e5661e294da0f01be58 (diff) | |
download | curl-3ec7543007d8f846e77e9e9d23de74be15a2b41f.tar.gz |
fix smtp compile warning
Use ssize_t instead of int for the Curl_smtp_escape_eob nread
argument.
Signed-off-by: Ben Greear <greearb@candelatech.com>
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 3531a9652..fac43041a 100644 --- a/lib/smtp.h +++ b/lib/smtp.h @@ -64,6 +64,6 @@ extern const struct Curl_handler Curl_handler_smtps; #define SMTP_EOB_REPL "\x0d\x0a\x2e\x2e" #define SMTP_EOB_REPL_LEN 4 -CURLcode Curl_smtp_escape_eob(struct connectdata *conn, int nread); +CURLcode Curl_smtp_escape_eob(struct connectdata *conn, ssize_t nread); #endif /* __SMTP_H */ |