From 5563e6c26848e7577e5aecd5d5ab610a92896acc Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Fri, 16 Mar 2012 09:45:13 +0100 Subject: [PATCH] mgcp_test: Rename method as it now operates on an array of messages This code was cleaned up, catch up and rename the method. --- openbsc/tests/mgcp/mgcp_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openbsc/tests/mgcp/mgcp_test.c b/openbsc/tests/mgcp/mgcp_test.c index bbbdff5e2..6e0df753d 100644 --- a/openbsc/tests/mgcp/mgcp_test.c +++ b/openbsc/tests/mgcp/mgcp_test.c @@ -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;