aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2007-01-19 16:32:05 +0000
committerrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2007-01-19 16:32:05 +0000
commit397696742a52075a9e5295d2a9b66761d66951e1 (patch)
treea8d2759379bb3bd0ef4f0e800789a6462d9b8e14 /channels
parent2da13ceac8d9fa11826073f18f6ba5313252adfb (diff)
slight change to the initialization of a structure,
also using '\0' to make it clear we need a (char)0 git-svn-id: http://svn.digium.com/svn/asterisk/trunk@51297 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_zap.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index fefb0b9fd..8c5f25d23 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -1148,10 +1148,11 @@ static int zt_digit_begin(struct ast_channel *chan, char digit)
int res;
ZT_DIAL_OPERATION zo = {
.op = ZT_DIAL_OP_APPEND,
- .dialstr[0] = 'T',
- .dialstr[1] = digit,
- .dialstr[2] = 0,
};
+
+ dialstr[0] = 'T';
+ dialstr[1] = digit;
+ 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