mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
Some reformatting in tcpip_params_fetch_values().
Michael
(This used to be commit 5b3813b233
)
This commit is contained in:
parent
c5a5b404b4
commit
b4e3c75272
@ -33,24 +33,26 @@ extern REGISTRY_OPS regdb_ops;
|
||||
|
||||
static int tcpip_params_fetch_values(const char *key, REGVAL_CTR *regvals)
|
||||
{
|
||||
fstring value;
|
||||
int value_length;
|
||||
char *hname;
|
||||
fstring value;
|
||||
int value_length;
|
||||
char *hname;
|
||||
char *mydomainname = NULL;
|
||||
|
||||
hname = myhostname();
|
||||
value_length = push_ucs2( value, value, hname, sizeof(value), STR_TERMINATE|STR_NOALIGN);
|
||||
regval_ctr_addvalue( regvals, "Hostname",REG_SZ, value, value_length );
|
||||
value_length = push_ucs2(value, value, hname, sizeof(value),
|
||||
STR_TERMINATE|STR_NOALIGN);
|
||||
regval_ctr_addvalue(regvals, "Hostname",REG_SZ, value, value_length);
|
||||
|
||||
mydomainname = get_mydnsdomname(talloc_tos());
|
||||
if (!mydomainname) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
value_length = push_ucs2( value, value, mydomainname, sizeof(value), STR_TERMINATE|STR_NOALIGN);
|
||||
regval_ctr_addvalue( regvals, "Domain", REG_SZ, value, value_length );
|
||||
value_length = push_ucs2(value, value, mydomainname, sizeof(value),
|
||||
STR_TERMINATE|STR_NOALIGN);
|
||||
regval_ctr_addvalue(regvals, "Domain", REG_SZ, value, value_length);
|
||||
|
||||
return regval_ctr_numvals( regvals );
|
||||
return regval_ctr_numvals(regvals);
|
||||
}
|
||||
|
||||
static int tcpip_params_fetch_subkeys(const char *key,
|
||||
|
Loading…
Reference in New Issue
Block a user