summaryrefslogtreecommitdiff
path: root/pbx.c
diff options
context:
space:
mode:
authorJames Golovich <james@gnuinter.net>2004-03-05 23:42:58 +0000
committerJames Golovich <james@gnuinter.net>2004-03-05 23:42:58 +0000
commitd97cc460b064cb824b71e3e87d573a74365f9dde (patch)
tree814a5c21931dc8dfe7c4a8f19808aac0c35c456c /pbx.c
parent2bc6301e39bb9cd9346cdcd2965df11109c0e226 (diff)
Fix pbx_builtin_atimeout comment
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2355 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx.c')
-rwxr-xr-xpbx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbx.c b/pbx.c
index 5e197f16d..85b469764 100755
--- a/pbx.c
+++ b/pbx.c
@@ -4315,7 +4315,7 @@ static int pbx_builtin_background(struct ast_channel *chan, void *data)
static int pbx_builtin_atimeout(struct ast_channel *chan, void *data)
{
int x = atoi((char *) data);
- /* Set the timeout for how long to wait between digits */
+ /* Set the absolute maximum time how long a call can be connected */
ast_channel_setwhentohangup(chan,x);
if (option_verbose > 2)
ast_verbose( VERBOSE_PREFIX_3 "Set Absolute Timeout to %d\n", x);