From 8cec67fe61b1e6e64cab968ee43be424a91e56cd Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 4 Oct 2010 01:35:36 +0200 Subject: registry: Make a two more functions static. --- source4/lib/registry/patchfile_dotreg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/lib') diff --git a/source4/lib/registry/patchfile_dotreg.c b/source4/lib/registry/patchfile_dotreg.c index 33fd6b609a..8fac00ba44 100644 --- a/source4/lib/registry/patchfile_dotreg.c +++ b/source4/lib/registry/patchfile_dotreg.c @@ -44,7 +44,7 @@ struct dotreg_data { * This is basically a copy of data_blob_hex_string_upper, but with comma's * between the bytes in hex. */ -_PUBLIC_ char *dotreg_data_blob_hex_string(TALLOC_CTX *mem_ctx, const DATA_BLOB *blob) +static char *dotreg_data_blob_hex_string(TALLOC_CTX *mem_ctx, const DATA_BLOB *blob) { size_t i; char *hex_string; @@ -67,7 +67,7 @@ _PUBLIC_ char *dotreg_data_blob_hex_string(TALLOC_CTX *mem_ctx, const DATA_BLOB * has no 0x for dwords, everything else is regarded as binary, and binary * strings are represented with bytes comma-separated. */ -_PUBLIC_ char *reg_val_dotreg_string(TALLOC_CTX *mem_ctx, uint32_t type, +static char *reg_val_dotreg_string(TALLOC_CTX *mem_ctx, uint32_t type, const DATA_BLOB data) { char *ret = NULL; -- cgit