diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-03-26 17:16:37 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-04-05 13:14:37 +0200 |
commit | 6a7ee5a5a540f2c69c8b56448e06098d368ecdb4 (patch) | |
tree | 92cf8574a44eb226b791492dd5c6c3e512e8eafb /include/my_md5.h | |
parent | 87604c4cadac0c9f86068d7f0075bb3cdeabdf0b (diff) | |
download | mariadb-git-6a7ee5a5a540f2c69c8b56448e06098d368ecdb4.tar.gz |
encryption cleanup: small changes
* comments
* move my_bytes_to_key() and my_aes_hex2uint() into file_key_management_plugin
* rename HA_INSERT_ORDER -> HA_PRESERVE_INSERT_ORDER
* remove unused variables and declarations
* fix casts
* don't link innodb with pcre
* remove redundant entries from aria's TARGET_LINK_LIBRARIES
Diffstat (limited to 'include/my_md5.h')
-rw-r--r-- | include/my_md5.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/my_md5.h b/include/my_md5.h index 34d3e931811..141ea309cae 100644 --- a/include/my_md5.h +++ b/include/my_md5.h @@ -28,7 +28,7 @@ extern "C" { #endif -#define compute_md5_hash(A,B,C) my_md5((unsigned char *)A,B,C) +#define compute_md5_hash(A,B,C) my_md5(A,B,C) /* Convert an array of bytes to a hexadecimal representation. |