From: Russell Bryant Date: Tue, 14 Mar 2006 19:09:13 +0000 (+0000) Subject: update to reflect conversion of the accountcode to use stringfields (issue #6722) X-Git-Tag: 1.4.0-beta1~2420 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9063466dfbd40c015a390af0783092ada75d8248;p=thirdparty%2Fasterisk.git 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 --- diff --git a/apps/app_rpt.c b/apps/app_rpt.c index 05abdf0950..24569daf53 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)