From 9d45391347e3fe3c7f65aa9769b2df68028b50cc Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Mon, 25 Feb 2013 22:28:14 +0000 Subject: smtp: Removed bytecountp from the per-request structure Removed this pointer to a downloaded bytes counter because it was set in smtp_init() to point to the same variable the transfer functions keep the count in (k->bytecount), effectively making the code in transfer.c "*k->bytecountp = k->bytecount" a no-op. --- lib/smtp.h | 1 - 1 file changed, 1 deletion(-) (limited to 'lib/smtp.h') diff --git a/lib/smtp.h b/lib/smtp.h index bf2f90d8d..76a8525a9 100644 --- a/lib/smtp.h +++ b/lib/smtp.h @@ -58,7 +58,6 @@ typedef enum { perhaps the SessionHandle is changed between the times the connection is used. */ struct SMTP { - curl_off_t *bytecountp; curl_pp_transfer transfer; struct curl_slist *rcpt; /* Recipient list */ }; -- cgit v1.2.1