diff options
author | konstantin@mysql.com <> | 2006-01-11 17:31:52 +0300 |
---|---|---|
committer | konstantin@mysql.com <> | 2006-01-11 17:31:52 +0300 |
commit | 9105d06dd6503f3a12952c2a4272024915c5e07e (patch) | |
tree | d9a36b082f480a17e4af43c766e9b1fc4bab9330 /include | |
parent | 16004acce1035dced81526272825a4e27c22e0dc (diff) | |
download | mariadb-git-9105d06dd6503f3a12952c2a4272024915c5e07e.tar.gz |
A fix for Bug#13944 "libmysqlclient exporting sha1_result function":
rename sha1_* to mysql_sha1_*
Diffstat (limited to 'include')
-rw-r--r-- | include/sha1.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sha1.h b/include/sha1.h index 1c345469d3c..e67acbf96b8 100644 --- a/include/sha1.h +++ b/include/sha1.h @@ -60,8 +60,8 @@ typedef struct SHA1_CONTEXT C_MODE_START -int sha1_reset( SHA1_CONTEXT* ); -int sha1_input( SHA1_CONTEXT*, const uint8 *, unsigned int ); -int sha1_result( SHA1_CONTEXT* , uint8 Message_Digest[SHA1_HASH_SIZE] ); +int mysql_sha1_reset(SHA1_CONTEXT*); +int mysql_sha1_input(SHA1_CONTEXT*, const uint8 *, unsigned int); +int mysql_sha1_result(SHA1_CONTEXT* , uint8 Message_Digest[SHA1_HASH_SIZE]); C_MODE_END |