]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Add missing set of name valid flag when dialing.
authorRichard Mudgett <rmudgett@digium.com>
Tue, 26 Apr 2011 18:00:34 +0000 (18:00 +0000)
committerRichard Mudgett <rmudgett@digium.com>
Tue, 26 Apr 2011 18:00:34 +0000 (18:00 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@315452 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_dial.c

index 6a415ff029555901157f47cdaab2345999971581..d76a0cf6aa962937f2697487d0a7db23e7acf761 100644 (file)
@@ -2243,6 +2243,7 @@ static int dial_exec_full(struct ast_channel *chan, const char *data, struct ast
                                 * 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);
@@ -2256,6 +2257,7 @@ static int dial_exec_full(struct ast_channel *chan, const char *data, struct ast
                                 * 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);
                        }