dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 114184 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r114184 | kpfleming | 2008-04-16 15:46:38 -0500 (Wed, 16 Apr 2008) | 6 lines

use the ZT_SET_DIALPARAMS ioctl properly by initializing the structure to all zeroes in case it contains fields that we don't write values into (which it does as of Zaptel 1.4.10)

(closes issue #12456)
Reported by: fnordian


........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@114185 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
kpfleming 2008-04-16 20:47:30 +00:00
parent 7ba4ed906e
commit 2076b70279
1 changed files with 2 additions and 0 deletions

View File

@ -13958,6 +13958,8 @@ static int process_zap(struct zt_chan_conf *confp, struct ast_variable *v, int r
toneduration = atoi(v->value);
if (toneduration > -1) {
memset(&dps, 0, sizeof(dps));
dps.dtmf_tonelen = dps.mfv1_tonelen = toneduration;
res = ioctl(ctlfd, ZT_SET_DIALPARAMS, &dps);
if (res < 0) {