From 7b15ce7dc99f46b346d9b7af7f86837faeae635e Mon Sep 17 00:00:00 2001 From: Mathieu Rene Date: Fri, 13 Feb 2009 17:10:51 +0000 Subject: [PATCH] doh git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11987 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_limit/mod_limit.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/mod/applications/mod_limit/mod_limit.c b/src/mod/applications/mod_limit/mod_limit.c index 15dadf80fe..2d221790d4 100644 --- a/src/mod/applications/mod_limit/mod_limit.c +++ b/src/mod/applications/mod_limit/mod_limit.c @@ -703,6 +703,7 @@ SWITCH_STANDARD_APP(group_function) #define LIMIT_USAGE " [ [number [dialplan [context]]]]" #define LIMIT_DESC "limit access to a resource and transfer to an extension if the limit is exceeded" +static char *limit_def_xfer_exten = "limit_exceeded"; SWITCH_STANDARD_APP(limit_function) { @@ -747,7 +748,7 @@ SWITCH_STANDARD_APP(limit_function) if (argc >= 4) { xfer_exten = argv[3]; } else { - xfer_exten = NULL; + xfer_exten = limit_def_xfer_exten; } @@ -763,7 +764,7 @@ SWITCH_STANDARD_APP(limit_function) switch_safe_free(sql); got = atoi(buf); - if (max >= 0 && xfer_exten && got + 1 > max) { + if (max >= 0 && got + 1 > max) { switch_ivr_session_transfer(session, xfer_exten, argv[4], argv[5]); goto done; }