mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-16 14:58:25 +00:00
Code simplification
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32138 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -13473,14 +13473,9 @@ static struct ast_channel *sip_request_call(const char *type, int format, void *
|
||||
ext = tmp;
|
||||
} else {
|
||||
ext = strchr(tmp, '/');
|
||||
if (ext) {
|
||||
if (ext)
|
||||
*ext++ = '\0';
|
||||
host = tmp;
|
||||
}
|
||||
else {
|
||||
host = tmp;
|
||||
ext = NULL;
|
||||
}
|
||||
host = tmp;
|
||||
}
|
||||
|
||||
if (create_addr(p, host)) {
|
||||
|
||||
Reference in New Issue
Block a user