diff src/imap/client.c @ 7226:e6693a0ec8e1 HEAD

Renamed T_FRAME_BEGIN/END to T_BEGIN/END. Removed T_FRAME() macro and replaced them with T_BEGIN/END calls. T_FRAME() made it difficult to debug code with gdb.
author Timo Sirainen <tss@iki.fi>
date Mon, 11 Feb 2008 20:17:00 +0200
parents bca55675d77c
children 4f63124e756e
line wrap: on
line diff
--- a/src/imap/client.c	Mon Feb 11 19:58:43 2008 +0200
+++ b/src/imap/client.c	Mon Feb 11 20:17:00 2008 +0200
@@ -642,9 +642,9 @@
 
 	client->handling_input = TRUE;
 	do {
-		T_FRAME(
+		T_BEGIN {
 			ret = client_handle_next_command(client, &remove_io);
-		);
+		} T_END;
 		if (ret)
 			handled_commands = TRUE;
 	} while (ret && !client->disconnected && client->io != NULL);