summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-03-14 19:09:13 +0000
committerRussell Bryant <russell@russellbryant.com>2006-03-14 19:09:13 +0000
commit9063466dfbd40c015a390af0783092ada75d8248 (patch)
tree6de70a33b069a16752c14988b552873d517ed282
parent5db6838b52dab5acaa49cf9af812ce4cacc1cf65 (diff)
update to reflect conversion of the accountcode to use stringfields (issue #6722)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@12961 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--apps/app_rpt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_rpt.c b/apps/app_rpt.c
index 05abdf095..24569daf5 100644
--- a/apps/app_rpt.c
+++ b/apps/app_rpt.c
@@ -2010,7 +2010,7 @@ struct ast_channel *mychannel,*genchannel;
strncpy(mychannel->exten, myrpt->exten, sizeof(mychannel->exten) - 1);
strncpy(mychannel->context, myrpt->ourcontext, sizeof(mychannel->context) - 1);
if (myrpt->acctcode)
- strncpy(mychannel->accountcode, myrpt->acctcode, sizeof(mychannel->accountcode) - 1);
+ ast_string_field_set(mychannel, accountcode, myrpt->acctcode);
mychannel->priority = 1;
ast_channel_undefer_dtmf(mychannel);
if (ast_pbx_start(mychannel) < 0)