summaryrefslogtreecommitdiff
path: root/source4/lib/registry
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-10-04 01:35:36 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-10-04 13:52:09 +0200
commit8cec67fe61b1e6e64cab968ee43be424a91e56cd (patch)
tree917edf3752caa29c4a2a0e4ac737b1ae020656c2 /source4/lib/registry
parent515c8f0289f9ac0d418399499da309f3f88b1540 (diff)
downloadsamba-8cec67fe61b1e6e64cab968ee43be424a91e56cd.tar.gz
samba-8cec67fe61b1e6e64cab968ee43be424a91e56cd.tar.bz2
samba-8cec67fe61b1e6e64cab968ee43be424a91e56cd.zip
registry: Make a two more functions static.
Diffstat (limited to 'source4/lib/registry')
-rw-r--r--source4/lib/registry/patchfile_dotreg.c4
1 files changed, 2 insertions, 2 deletions
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;