[Freeswitch-svn] [commit] r11986 - in freeswitch/trunk: scripts src/mod/applications/mod_limit support-d

FreeSWITCH SVN mrene at freeswitch.org
Fri Feb 13 09:09:52 PST 2009


Author: mrene
Date: Fri Feb 13 11:09:52 2009
New Revision: 11986

Log:
move gdbinit to support-d

Added:
   freeswitch/trunk/support-d/.gdbinit   (props changed)
      - copied unchanged from r11985, /freeswitch/trunk/scripts/gdbinit
Removed:
   freeswitch/trunk/scripts/gdbinit
Modified:
   freeswitch/trunk/src/mod/applications/mod_limit/mod_limit.c

Modified: freeswitch/trunk/src/mod/applications/mod_limit/mod_limit.c
==============================================================================
--- freeswitch/trunk/src/mod/applications/mod_limit/mod_limit.c	(original)
+++ freeswitch/trunk/src/mod/applications/mod_limit/mod_limit.c	Fri Feb 13 11:09:52 2009
@@ -703,7 +703,6 @@
 
 #define LIMIT_USAGE "<realm> <id> [<max> [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)
 {
@@ -748,7 +747,7 @@
 	if (argc >= 4) {
 		xfer_exten = argv[3];
 	} else {
-		xfer_exten = limit_def_xfer_exten;
+		xfer_exten = NULL;
 	}
 
 	
@@ -764,7 +763,7 @@
 	switch_safe_free(sql);
 	got = atoi(buf);
 
-	if (max >= 0 && got + 1 > max) {
+	if (max >= 0 && xfer_exten && got + 1 > max) {
 		switch_ivr_session_transfer(session, xfer_exten, argv[4], argv[5]);
 		goto done;
 	}



More information about the Freeswitch-svn mailing list