]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Strip options off the argument passed for devicestate in chan_local. (issue #8034...
authorJoshua Colp <jcolp@digium.com>
Tue, 26 Sep 2006 20:19:33 +0000 (20:19 +0000)
committerJoshua Colp <jcolp@digium.com>
Tue, 26 Sep 2006 20:19:33 +0000 (20:19 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@43697 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_local.c

index 99b3177b215e9c1e88d6876aff5aa1199433873a..9896f0f1da5c18ce78d3f969ffae20fa844619d7 100644 (file)
@@ -127,7 +127,7 @@ static AST_LIST_HEAD_STATIC(locals, local_pvt);
 static int local_devicestate(void *data)
 {
        char *exten = ast_strdupa(data);
-       char *context = NULL;
+       char *context = NULL, *opts = NULL;
        int res;
 
        if (!(context = strchr(exten, '@'))) {
@@ -137,6 +137,10 @@ static int local_devicestate(void *data)
 
        *context++ = '\0';
 
+       /* Strip options if they exist */
+       if ((opts = strchr(context, '/')))
+               *opts = '\0';
+
        if (option_debug > 2)
                ast_log(LOG_DEBUG, "Checking if extension %s@%s exists (devicestate)\n", exten, context);
        res = ast_exists_extension(NULL, context, exten, 1, NULL);