Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 89577 | Differences between
and this patch

Collapse All | Expand All

(-)send_message.c.orig (-1 / +6 lines)
Lines 1-6 Link Here
1
/*
1
/*
2
 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
2
 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3
 * Copyright (C) 1999-2003 Hiroyuki Yamamoto
3
 * Copyright (C) 1999-2005 Hiroyuki Yamamoto
4
 *
4
 *
5
 * This program is free software; you can redistribute it and/or modify
5
 * This program is free software; you can redistribute it and/or modify
6
 * it under the terms of the GNU General Public License as published by
6
 * it under the terms of the GNU General Public License as published by
Lines 412-417 Link Here
412
			ac_prefs->tmp_smtp_pass = NULL;
412
			ac_prefs->tmp_smtp_pass = NULL;
413
		}
413
		}
414
		ret = -1;
414
		ret = -1;
415
	} else if (session->state == SESSION_EOF &&
416
		   SMTP_SESSION(session)->state == SMTP_QUIT) {
417
		/* consider EOF right after QUIT successful */
418
		log_warning("%s\n", _("Connection closed by the remote host."));
419
		ret = 0;
415
	} else if (session->state == SESSION_ERROR ||
420
	} else if (session->state == SESSION_ERROR ||
416
		   session->state == SESSION_EOF ||
421
		   session->state == SESSION_EOF ||
417
		   session->state == SESSION_TIMEOUT ||
422
		   session->state == SESSION_TIMEOUT ||

Return to bug 89577