Index: main/pbx.c =================================================================== --- main/pbx.c (revision 97634) +++ main/pbx.c (working copy) @@ -529,12 +529,17 @@ { "GotoIfTime", pbx_builtin_gotoiftime, "Conditional Goto based on the current time", - " GotoIfTime(,,,?[[context,]exten,]priority):\n" + " GotoIfTime(,,,?[labeliftrue]:[labeliffalse]):\n" "This application will set the context, extension, and priority in the channel structure\n" - "if the current time matches the given time specification. Otherwise, nothing is done.\n" + "based on the evaluation of the given time specification. After this application completes,\n" + "the pbx engine will continue dialplan execution at the specified location in the dialplan.\n" + "If the current time is within the given time specification, the channel will continue at\n" + "'labeliftrue'. Otherwise the channel will continue at 'labeliffalse'. If the label chosen\n" + "by the condition is omitted, no jump is performed, and execution passes to the next\n" + "instruction. If the target jump location is bogus, the same actions would be taken as for\n" + "Goto.\n" "Further information on the time specification can be found in examples\n" - "illustrating how to do time-based context includes in the dialplan.\n" - "If the target jump location is bogus, the same actions would be taken as for Goto.\n" + "illustrating how to do time-based context includes in the dialplan.\n" }, { "ImportVar", pbx_builtin_importvar, @@ -6840,12 +6845,11 @@ */ static int pbx_builtin_gotoiftime(struct ast_channel *chan, void *data) { - int res=0; - char *s, *ts; + char *s, *ts, *branch1, *branch2, *branch; struct ast_timing timing; if (ast_strlen_zero(data)) { - ast_log(LOG_WARNING, "GotoIfTime requires an argument:\n