From: Timo Sirainen Date: Sat, 15 May 2004 11:59:20 +0000 (+0300) Subject: t_push/t_pop X-Git-Tag: 1.1.alpha1~4091 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e6b631714e3dd7d21afc82ff99fa1ddd18438ec;p=thirdparty%2Fdovecot%2Fcore.git t_push/t_pop --HG-- branch : HEAD --- diff --git a/src/pop3/client.c b/src/pop3/client.c index c8d6698412..6ac06372b3 100644 --- a/src/pop3/client.c +++ b/src/pop3/client.c @@ -192,10 +192,12 @@ void client_send_line(struct client *client, const char *fmt, ...) if (client->output->closed) return; + t_push(); va_start(va, fmt); (void)o_stream_send_str(client->output, t_strdup_vprintf(fmt, va)); (void)o_stream_send(client->output, "\r\n", 2); va_end(va); + t_pop(); } void client_send_storage_error(struct client *client)