From cd788e2ab9f3d7d23d11b410793f95a2fbc6d0f8 Mon Sep 17 00:00:00 2001 From: Mark Spencer <markster@digium.com> Date: Thu, 29 Apr 2004 05:01:32 +0000 Subject: [PATCH] Handle fromdomain properly when there is no @ sign git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2817 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 220f213b41..ace15f80cf 100755 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -4071,7 +4071,8 @@ static int get_destination(struct sip_pvt *p, struct sip_request *oreq) if ((a = strchr(fr, '@'))) { *a = '\0'; strncpy(p->fromdomain, a + 1, sizeof(p->fromdomain) - 1); - } + } else + strncpy(p->fromdomain, fr, sizeof(p->fromdomain) - 1); } if (sipdebug) ast_verbose("Looking for %s in %s\n", c, p->context); -- GitLab