From f3f9446ec122d633c50a0c3dba9a9bea9f79c2b0 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 18 Oct 2008 16:16:57 +0200 Subject: Rename hex_encode to hex_encode_talloc,for consistency with samba 4 and heimdal. --- source3/lib/util_str.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib/util_str.c') diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c index 80aaa2b9c0..f6783f10ff 100644 --- a/source3/lib/util_str.c +++ b/source3/lib/util_str.c @@ -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; -- cgit