mgcp_test: Rename method as it now operates on an array of messages

This code was cleaned up, catch up and rename the method.
This commit is contained in:
Holger Hans Peter Freyther 2012-03-16 09:45:13 +01:00
parent 3e60348b3b
commit 5563e6c268
1 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ static struct msgb *create_msg(const char *str)
return msg;
}
static void test_auep(void)
static void test_messages(void)
{
struct mgcp_config *cfg;
int i;
@ -114,7 +114,7 @@ int main(int argc, char **argv)
{
osmo_init_logging(&log_info);
test_auep();
test_messages();
printf("Done\n");
return EXIT_SUCCESS;