dect
/
asterisk
Archived
13
0
Fork 0

whoops, fix a cut&paste error...

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@51298 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
rizzo 2007-01-19 16:35:37 +00:00
parent 397696742a
commit 78ca0b0e7c
1 changed files with 3 additions and 3 deletions

View File

@ -1150,9 +1150,9 @@ static int zt_digit_begin(struct ast_channel *chan, char digit)
.op = ZT_DIAL_OP_APPEND,
};
dialstr[0] = 'T';
dialstr[1] = digit;
dialstr[2] = '\0';
zo.dialstr[0] = 'T';
zo.dialstr[1] = digit;
zo.dialstr[2] = '\0';
if ((res = ioctl(pvt->subs[SUB_REAL].zfd, ZT_DIAL, &zo)))
ast_log(LOG_WARNING, "Couldn't dial digit %c\n", digit);
else