提交 e8c163c1 authored 作者: Brian West's avatar Brian West 提交者: Anthony Minessale

FS-6250 fix regression from 7efeabbd, don't…

FS-6250 fix regression from 7efeabbd, don't discrimiate against people that have s as the first character in their user names
上级 aabf813a
......@@ -3112,7 +3112,7 @@ SWITCH_DECLARE(int) switch_split_user_domain(char *in, char **user, char **domai
if (!strncasecmp(in, "sip", 3)) {
in += 3;
while(*in == ':' || *in == 's') in++;
while(*in == ':') in++;
}
u = in;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论