https://origsvn.digium.com/svn/asterisk/branches/1.8
........
r315452 | rmudgett | 2011-04-26 13:00:34 -0500 (Tue, 26 Apr 2011) | 1 line
Add missing set of name valid flag when dialing.
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@315453
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
* No hint name available. We have a connected name supplied by
* the dialplan we can use instead.
*/
+ caller.id.name.valid = 1;
caller.id.name = chan->connected.id.name;
}
ast_channel_set_caller_event(tc, &caller, NULL);
* We have a connected name supplied by the dialplan we can
* use instead.
*/
+ caller.id.name.valid = 1;
caller.id.name = chan->connected.id.name;
ast_channel_set_caller_event(tc, &caller, NULL);
}