dect
/
asterisk
Archived
13
0
Fork 0

Fixing last errors in the conversion, though it appears that the AES_* functions are still broken.

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@243077 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
tilghman 2010-01-26 01:56:24 +00:00
parent c13a9d3f08
commit b5bbff260e
1 changed files with 4 additions and 4 deletions

View File

@ -211,7 +211,7 @@ AST_TEST_DEFINE(test_substitution)
ast_test_status_update(&args->status_update, "Testing variable substitution ...\n");
c = ast_channel_alloc(0, 0, "", "", "", "", "", 0, "Test/substitution");
c = ast_channel_alloc(0, 0, "", "", "", "", "", "", 0, "Test/substitution");
#define TEST(t) if (t == AST_TEST_FAIL) { res = AST_TEST_FAIL; }
TEST(test_chan_integer(&args->status_update, &args->ast_test_error_str, c, &c->cid.cid_pres, "${CALLINGPRES}"));
@ -263,15 +263,15 @@ AST_TEST_DEFINE(test_substitution)
if (acf->read && acf->read2) {
char expression[80];
snprintf(expression, sizeof(expression), "${%s(foo)}", cmd);
res = test_chan_function(&args->status_update,
&args->ast_test_error_str,c, expression);
if (AST_TEST_FAIL == test_chan_function(&args->status_update, &args->ast_test_error_str,c, expression)) {
res = AST_TEST_FAIL;
}
}
}
ast_free(cmd);
}
ast_hangup(c);
return res;
}