summaryrefslogtreecommitdiff
path: root/pbx.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-03-04 05:23:50 +0000
committerMark Spencer <markster@digium.com>2004-03-04 05:23:50 +0000
commit550785ba290961efff695e48f8e0aa91b1c0c8c3 (patch)
treea0fd6c29045837ff59bde7ebc476f8fa8e733507 /pbx.c
parent1f691912e1cf72840d17799ac746c3d5a54b0650 (diff)
Fix GotoIfTime if time is bad
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2321 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx.c')
-rwxr-xr-xpbx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pbx.c b/pbx.c
index cf1082827..8db8db4f9 100755
--- a/pbx.c
+++ b/pbx.c
@@ -2933,12 +2933,12 @@ static void get_timerange(struct ast_include *i, char *times)
#if 1
s1 = s1 * 30 + s2/2;
if ((s1 < 0) || (s1 >= 24*30)) {
- ast_log(LOG_WARNING, "%s isn't a valid star time. Assuming no time.\n", times);
+ ast_log(LOG_WARNING, "%s isn't a valid start time. Assuming no time.\n", times);
return;
}
e1 = e1 * 30 + e2/2;
- if ((e1 < 0) || (e2 >= 24*30)) {
- ast_log(LOG_WARNING, "%s isn't a valid start time. Assuming no time.\n", times);
+ if ((e1 < 0) || (e1 >= 24*30)) {
+ ast_log(LOG_WARNING, "%s isn't a valid end time. Assuming no time.\n", e);
return;
}
/* Go through the time and enable each appropriate bit */