From a198e5af5a0d543430b74d32f7d298b07cd92b98 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Fri, 3 Jun 2005 21:02:51 +0000 Subject: [PATCH] use ast_strip_quoted to strip brackets from key secrets git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5835 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_iax2.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c index 4dabea6849..759fdb1461 100755 --- a/channels/chan_iax2.c +++ b/channels/chan_iax2.c @@ -2877,13 +2877,8 @@ static void parse_dial_string(char *data, struct parsed_dial_string *pds) move it to the key field instead */ if (pds->password && (pds->password[0] == '[')) { - int len = strlen(pds->password); - - if ((len > 2) && (pds->password[len - 1] == ']')) { - pds->key = ++(pds->password); - pds->password[len - 1] = '\0'; - pds->password = NULL; - } + pds->key = ast_strip_quoted(pds->password, "[", "]"); + pds->password = NULL; } }