mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +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
@ -39,18 +39,20 @@ static int tcpip_params_fetch_values(const char *key, REGVAL_CTR *regvals)
|
||||
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