Index: apps/app_while.c =================================================================== RCS file: /usr/cvsroot/asterisk/apps/app_while.c,v retrieving revision 1.1 diff -u -r1.1 app_while.c --- apps/app_while.c 24 Dec 2004 01:18:13 -0000 1.1 +++ apps/app_while.c 27 Dec 2004 13:15:36 -0000 @@ -3,7 +3,7 @@ * * While Loop and ExecIf Implementations * - * Copyright Anthony Minessale + * Copyright 2004, Anthony Minessale * * Anthony Minessale * @@ -56,13 +56,13 @@ static int execif_exec(struct ast_channel *chan, void *data) { int res=0; - struct localuser *u; - LOCAL_USER_ADD(u); + struct localuser *u; char *myapp = NULL; char *mydata = NULL; char *expr = NULL; struct ast_app *app = NULL; + LOCAL_USER_ADD(u); expr = ast_strdupa((char *) data); if ((myapp = strchr(expr,'|'))) { *myapp = '\0';