[asterisk-commits] tilghman: branch 1.4 r43422 - in /branches/1.4:
./ apps/app_rpt.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Thu Sep 21 10:04:41 MST 2006
Author: tilghman
Date: Thu Sep 21 12:04:40 2006
New Revision: 43422
URL: http://svn.digium.com/view/asterisk?rev=43422&view=rev
Log:
Merged revisions 43420 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r43420 | tilghman | 2006-09-21 12:01:48 -0500 (Thu, 21 Sep 2006) | 2 lines
Whitespace change... really just an excuse to test repotools
........
Modified:
branches/1.4/ (props changed)
branches/1.4/apps/app_rpt.c
Propchange: branches/1.4/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.
Modified: branches/1.4/apps/app_rpt.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_rpt.c?rev=43422&r1=43421&r2=43422&view=diff
==============================================================================
--- branches/1.4/apps/app_rpt.c (original)
+++ branches/1.4/apps/app_rpt.c Thu Sep 21 12:04:40 2006
@@ -1882,55 +1882,54 @@
static int get_wait_interval(struct rpt *myrpt, int type)
{
- int interval;
- const char *wait_times;
- char *wait_times_save;
-
- wait_times_save = NULL;
- wait_times = ast_variable_retrieve(myrpt->cfg, myrpt->name, "wait_times");
-
- if(wait_times){
- wait_times_save = ast_strdupa(wait_times);
- if(!wait_times_save){
- ast_log(LOG_WARNING, "Out of memory in wait_interval()\n");
- wait_times = NULL;
- }
- }
-
- switch(type){
- case DLY_TELEM:
- if(wait_times)
- interval = retrieve_astcfgint(myrpt,wait_times_save, "telemwait", 500, 5000, 1000);
- else
- interval = 1000;
- break;
-
- case DLY_ID:
- if(wait_times)
- interval = retrieve_astcfgint(myrpt,wait_times_save, "idwait",250,5000,500);
- else
- interval = 500;
- break;
-
- case DLY_UNKEY:
- if(wait_times)
- interval = retrieve_astcfgint(myrpt,wait_times_save, "unkeywait",500,5000,1000);
- else
- interval = 1000;
- break;
-
- case DLY_CALLTERM:
- if(wait_times)
- interval = retrieve_astcfgint(myrpt,wait_times_save, "calltermwait",500,5000,1500);
- else
- interval = 1500;
- break;
-
- default:
- return 0;
- }
+ int interval;
+ const char *wait_times;
+ char *wait_times_save = NULL;
+
+ wait_times = ast_variable_retrieve(cfg, myrpt->name, "wait_times");
+
+ if (wait_times) {
+ wait_times_save = ast_strdupa(wait_times);
+ if (!wait_times_save) {
+ ast_log(LOG_WARNING, "Out of memory in wait_interval()\n");
+ wait_times = NULL;
+ }
+ }
+
+ switch (type) {
+ case DLY_TELEM:
+ if (wait_times)
+ interval = retrieve_astcfgint(wait_times_save, "telemwait", 500, 5000, 1000);
+ else
+ interval = 1000;
+ break;
+
+ case DLY_ID:
+ if (wait_times)
+ interval = retrieve_astcfgint(wait_times_save, "idwait", 250, 5000, 500);
+ else
+ interval = 500;
+ break;
+
+ case DLY_UNKEY:
+ if (wait_times)
+ interval = retrieve_astcfgint(wait_times_save, "unkeywait", 500, 5000, 1000);
+ else
+ interval = 1000;
+ break;
+
+ case DLY_CALLTERM:
+ if (wait_times)
+ interval = retrieve_astcfgint(wait_times_save, "calltermwait", 500, 5000, 1500);
+ else
+ interval = 1500;
+ break;
+
+ default:
+ return 0;
+ }
return interval;
-}
+}
/*
More information about the asterisk-commits
mailing list