Get rid of the constant 'required' variable, just use the value when

2002-07-15  Jeffrey Stedfast  <fejj@ximian.com>

	* providers/smtp/camel-smtp-transport.c (smtp_data): Get rid of
	the constant 'required' variable, just use the value when calling
	set_best_encoding.

svn path=/trunk/; revision=17465
This commit is contained in:
Jeffrey Stedfast
2002-07-15 20:40:16 +00:00
committed by Jeffrey Stedfast
parent 2a740f6350
commit e538df8df1
2 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,9 @@
2002-07-15 Jeffrey Stedfast <fejj@ximian.com>
* providers/smtp/camel-smtp-transport.c (smtp_data): Get rid of
the constant 'required' variable, just use the value when calling
set_best_encoding.
* providers/local/camel-local-provider.c: Changed the mbox and
spool provider descriptions to try and be more clear. I'm not sure
I like the mention of Evolution in the mbox provider description,

View File

@ -1136,8 +1136,6 @@ smtp_rcpt (CamelSmtpTransport *transport, const char *recipient, CamelException
static gboolean
smtp_data (CamelSmtpTransport *transport, CamelMimeMessage *message, gboolean has_8bit_parts, CamelException *ex)
{
/* now we can actually send what's important :p */
CamelBestencRequired required = CAMEL_BESTENC_GET_ENCODING;
CamelBestencEncoding enctype = CAMEL_BESTENC_8BIT;
char *cmdbuf, *respbuf = NULL;
CamelStreamFilter *filtered_stream;
@ -1156,7 +1154,7 @@ smtp_data (CamelSmtpTransport *transport, CamelMimeMessage *message, gboolean ha
within our required encoding type and also force any text
parts with long lines (longer than 998 octets) to wrap by
QP or base64 encoding them. */
camel_mime_message_set_best_encoding (message, required, enctype);
camel_mime_message_set_best_encoding (message, CAMEL_BESTENC_GET_ENCODING, enctype);
cmdbuf = g_strdup ("DATA\r\n");