1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-26 23:33:15 +03:00

Rename hex_encode to hex_encode_talloc,for consistency with samba 4 and heimdal.

This commit is contained in:
Jelmer Vernooij
2008-10-18 16:16:57 +02:00
parent 63de2d9823
commit f3f9446ec1
7 changed files with 13 additions and 13 deletions

View File

@@ -939,7 +939,7 @@ DATA_BLOB strhex_to_data_blob(TALLOC_CTX *mem_ctx, const char *strhex)
* Routine to print a buffer as HEX digits, into an allocated string.
*/
char *hex_encode(TALLOC_CTX *mem_ctx, const unsigned char *buff_in, size_t len)
char *hex_encode_talloc(TALLOC_CTX *mem_ctx, const unsigned char *buff_in, size_t len)
{
int i;
char *hex_buffer;