diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-01-13 15:01:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:40:33 -0500 |
commit | bc4af8dd5ef900f0ab46f4ddaf91e33772a3e029 (patch) | |
tree | 95efc59d38c8d439e8491944dc235132dd7d3da3 /source4 | |
parent | 21729fff115046ede3a316028b6a4e95cc7c590b (diff) | |
download | samba-bc4af8dd5ef900f0ab46f4ddaf91e33772a3e029.tar.gz samba-bc4af8dd5ef900f0ab46f4ddaf91e33772a3e029.tar.bz2 samba-bc4af8dd5ef900f0ab46f4ddaf91e33772a3e029.zip |
r20730: this can be const
metze
(This used to be commit 181db920476a9ebddeee1ebea17be0baf85ea59e)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/util/data_blob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/util/data_blob.c b/source4/lib/util/data_blob.c index 3253d52ee7..7230aa9d99 100644 --- a/source4/lib/util/data_blob.c +++ b/source4/lib/util/data_blob.c @@ -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; |