Index: channels/chan_iax2.c =================================================================== --- channels/chan_iax2.c (revision 132822) +++ channels/chan_iax2.c (working copy) @@ -11666,10 +11666,8 @@ return 0; } - if ((colname = strchr(peername, ':'))) /*! \todo : will be removed after the 1.4 relese */ + if ((colname = strchr(peername, ','))) *colname++ = '\0'; - else if ((colname = strchr(peername, '|'))) - *colname++ = '\0'; else colname = "ip"; @@ -11718,7 +11716,7 @@ struct ast_custom_function iaxpeer_function = { .name = "IAXPEER", .synopsis = "Gets IAX peer information", - .syntax = "IAXPEER([|item])", + .syntax = "IAXPEER([,item])", .read = function_iaxpeer, .desc = "If peername specified, valid items are:\n" "- ip (default) The IP address.\n"