diff src/imap/imap-status.c @ 6940:414c9d631a81 HEAD

Replaced t_push/t_pop calls with T_FRAME*() macros.
author Timo Sirainen <tss@iki.fi>
date Wed, 05 Dec 2007 17:47:44 +0200
parents aeee5076f99f
children 7ed926ed7aa4
line wrap: on
line diff
--- a/src/imap/imap-status.c	Wed Dec 05 17:47:19 2007 +0200
+++ b/src/imap/imap-status.c	Wed Dec 05 17:47:44 2007 +0200
@@ -76,7 +76,6 @@
 {
 	string_t *str;
 
-	t_push();
 	str = t_str_new(128);
 	str_append(str, "* STATUS ");
         imap_quote_append_string(str, mailbox, FALSE);
@@ -98,5 +97,4 @@
 	str_append_c(str, ')');
 
 	client_send_line(client, str_c(str));
-	t_pop();
 }