Skip to content
This repository was archived by the owner on Aug 26, 2024. It is now read-only.

Commit e12a2d0

Browse files
author
jan.kneschke@oracle.com
committed
fixed build with glib-2.0 before 2.38
g_assert_true() was added in 2.38
1 parent 5859342 commit e12a2d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/t_network_mysqld_packet.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ test_mysqld_check_password(void) {
501501

502502
g_assert_cmpint(0, ==, network_mysqld_proto_password_hash(hashed_password, S(hashed_password)));
503503

504-
g_assert_true(network_mysqld_proto_password_check(S(challenge), S(auth_plugin_data), S(hashed_password)));
504+
g_assert_cmpint(TRUE, ==, network_mysqld_proto_password_check(S(challenge), S(auth_plugin_data), S(hashed_password)));
505505

506506
g_string_free(challenge, TRUE);
507507
g_string_free(hashed_password, TRUE);

0 commit comments

Comments
 (0)