Index: head/databases/mysql-connector-c/files/patch-sql-common_client__authentication.cc =================================================================== --- head/databases/mysql-connector-c/files/patch-sql-common_client__authentication.cc (nonexistent) +++ head/databases/mysql-connector-c/files/patch-sql-common_client__authentication.cc (revision 479432) @@ -0,0 +1,15 @@ +sql-common/client_authentication.cc:86:56: error: comparison between pointer and integer ('char *' and 'int') + mysql->options.extension->server_public_key_path != '\0') + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~~~~ + +--- sql-common/client_authentication.cc.orig 2018-08-27 19:39:51 UTC ++++ sql-common/client_authentication.cc +@@ -83,7 +83,7 @@ RSA *rsa_init(MYSQL *mysql) + + if (mysql->options.extension != NULL && + mysql->options.extension->server_public_key_path != NULL && +- mysql->options.extension->server_public_key_path != '\0') ++ *mysql->options.extension->server_public_key_path != '\0') + { + pub_key_file= fopen(mysql->options.extension->server_public_key_path, + "r"); Property changes on: head/databases/mysql-connector-c/files/patch-sql-common_client__authentication.cc ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property