1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r20730: this can be const

metze
(This used to be commit 181db92047)
This commit is contained in:
Stefan Metzmacher 2007-01-13 15:01:39 +00:00 committed by Gerald (Jerry) Carter
parent 21729fff11
commit bc4af8dd5e

View File

@ -150,7 +150,7 @@ _PUBLIC_ BOOL data_blob_equal(const DATA_BLOB *d1, const DATA_BLOB *d2)
/**
print the data_blob as hex string
**/
_PUBLIC_ char *data_blob_hex_string(TALLOC_CTX *mem_ctx, DATA_BLOB *blob)
_PUBLIC_ char *data_blob_hex_string(TALLOC_CTX *mem_ctx, const DATA_BLOB *blob)
{
int i;
char *hex_string;