From f66dc2b025f02abb607ec56716d386d9ddab06e0 Mon Sep 17 00:00:00 2001 From: MassimilianoPinto Date: Thu, 16 Oct 2014 13:00:23 +0200 Subject: [PATCH] Removed compilation error on mysqlusers Removed compilation error on mysqlusers --- server/core/test/test_mysql_users.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/server/core/test/test_mysql_users.c b/server/core/test/test_mysql_users.c index 565cc02ca..7f72496cc 100644 --- a/server/core/test/test_mysql_users.c +++ b/server/core/test/test_mysql_users.c @@ -347,7 +347,7 @@ int main() { if (ret) fprintf(stderr, "\t-- Expecting no match\n"); assert(ret == 1); - ret = set_and_get_mysql_users_wildcards("pippo", "192.0.%.%", "foo", "192.3.2.1", NULL, NULL, NULL); + ret = set_and_get_mysql_users_wildcards("pippo", "192.0.%.%", "foo", "192.3.2.1", "Y", NULL, NULL); if (ret) fprintf(stderr, "\t-- Expecting no match\n"); assert(ret == 1); @@ -383,9 +383,6 @@ int main() { if (!ret) fprintf(stderr, "\t-- Expecting ok\n"); assert(ret == 0); - ret = set_and_get_mysql_users_wildcards("pippo", "192.0.0.%", "1234567890123456789012345678901", "192.3.2.1"); - if (ret) fprintf(stderr, "\t-- Expecting no match\n"); - assert(ret == 1); fprintf(stderr, "----------------\n");