]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
correct return values in ooh323_indicate for AST_CONTROL_T38_PARAMETERS
authorAlexandr Anikin <may@telecom-service.ru>
Sun, 27 Mar 2011 21:47:13 +0000 (21:47 +0000)
committerAlexandr Anikin <may@telecom-service.ru>
Sun, 27 Mar 2011 21:47:13 +0000 (21:47 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@311687 65c4cc65-6c06-0410-ace0-fbb531ad65f3

addons/chan_ooh323.c

index 6edd7da853d95e2f416b067619647e0ad31f416b..8af04fd37eb750fc01ceca3b985a802bd14de3fa 100644 (file)
@@ -1192,6 +1192,7 @@ static int ooh323_indicate(struct ast_channel *ast, int condition, const void *d
 
        struct ooh323_pvt *p = (struct ooh323_pvt *) ast->tech_pvt;
        char *callToken = (char *)NULL;
+       int res = -1;
 
        if (!p) return -1;
 
@@ -1293,6 +1294,7 @@ static int ooh323_indicate(struct ast_channel *ast, int condition, const void *d
                                if (!p->chmodepend && !p->faxmode) {
                                        ooRequestChangeMode(p->callToken, 1);
                                        p->chmodepend = 1;
+                                       res = 0;
                                }
                                break;
 
@@ -1301,6 +1303,7 @@ static int ooh323_indicate(struct ast_channel *ast, int condition, const void *d
                                if (!p->chmodepend && p->faxmode) {
                                        ooRequestChangeMode(p->callToken, 0);
                                        p->chmodepend = 1;
+                                       res = 0;
                                }
                                break;
 
@@ -1326,7 +1329,7 @@ static int ooh323_indicate(struct ast_channel *ast, int condition, const void *d
                ast_verbose("++++  ooh323_indicate %d on %s\n", condition, callToken);
 
        free(callToken);
-       return -1;
+       return res;
 }
 
 static int ooh323_queryoption(struct ast_channel *ast, int option, void *data, int *datalen)