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

Rename libnet_smbconf_format_registry_value() to libnet_conf_format_registry_value().

Michael
This commit is contained in:
Michael Adam 2008-01-03 13:45:14 +01:00
parent 96b2923bc3
commit 3f9f353351

View File

@ -270,8 +270,8 @@ done:
* which are ar stored as REG_SZ values, so the incomplete
* handling should be ok.
*/
static char *libnet_smbconf_format_registry_value(TALLOC_CTX *mem_ctx,
struct registry_value *value)
static char *libnet_conf_format_registry_value(TALLOC_CTX *mem_ctx,
struct registry_value *value)
{
char *result = NULL;
@ -352,8 +352,8 @@ static WERROR libnet_smbconf_reg_get_values(TALLOC_CTX *mem_ctx,
goto done;
}
valstring = libnet_smbconf_format_registry_value(tmp_ctx,
valvalue);
valstring = libnet_conf_format_registry_value(tmp_ctx,
valvalue);
werr = libnet_conf_add_string_to_array(tmp_ctx,
&tmp_valstrings,
count,
@ -742,7 +742,7 @@ WERROR libnet_smbconf_getparm(TALLOC_CTX *mem_ctx,
goto done;
}
*valstr = libnet_smbconf_format_registry_value(mem_ctx, value);
*valstr = libnet_conf_format_registry_value(mem_ctx, value);
if (*valstr == NULL) {
werr = WERR_NOMEM;