1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

registry: Make a two more functions static.

This commit is contained in:
Jelmer Vernooij 2010-10-04 01:35:36 +02:00
parent 515c8f0289
commit 8cec67fe61

View File

@ -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;