diff src/master/login-process.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 e6823d781317
children af998ae4254b
line wrap: on
line diff
--- a/src/master/login-process.c	Mon Feb 11 19:58:43 2008 +0200
+++ b/src/master/login-process.c	Mon Feb 11 20:17:00 2008 +0200
@@ -97,7 +97,7 @@
 	memset(&master_reply, 0, sizeof(master_reply));
 	if (user == NULL)
 		master_reply.status = MASTER_LOGIN_STATUS_INTERNAL_ERROR;
-	else T_FRAME_BEGIN {
+	else T_BEGIN {
 		struct login_group *group = request->process->group;
 
 		master_reply.status =
@@ -106,7 +106,7 @@
 					    request->fd, &request->local_ip,
 					    &request->remote_ip, user, args,
 					    FALSE);
-	} T_FRAME_END;
+	} T_END;
 
 	/* reply to login */
 	master_reply.tag = request->login_tag;