mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
s3: Remove a struct typedef
This commit is contained in:
parent
cf2febf3d1
commit
384f303c2c
@ -37,11 +37,11 @@
|
||||
#define MAX_REFERRAL_COUNT 256
|
||||
#define MAX_MSDFS_JUNCTIONS 256
|
||||
|
||||
typedef struct _client_referral {
|
||||
struct client_dfs_referral {
|
||||
uint32 proximity;
|
||||
uint32 ttl;
|
||||
char *dfspath;
|
||||
} CLIENT_DFS_REFERRAL;
|
||||
};
|
||||
|
||||
struct referral {
|
||||
char *alternate_path; /* contains the path referred */
|
||||
|
@ -2256,7 +2256,7 @@ void cli_cm_display(const struct cli_state *c);
|
||||
bool cli_dfs_get_referral(TALLOC_CTX *ctx,
|
||||
struct cli_state *cli,
|
||||
const char *path,
|
||||
CLIENT_DFS_REFERRAL**refs,
|
||||
struct client_dfs_referral **refs,
|
||||
size_t *num_refs,
|
||||
size_t *consumed);
|
||||
bool cli_resolve_path(TALLOC_CTX *ctx,
|
||||
|
@ -602,7 +602,7 @@ static bool cli_dfs_check_error( struct cli_state *cli, NTSTATUS status )
|
||||
bool cli_dfs_get_referral(TALLOC_CTX *ctx,
|
||||
struct cli_state *cli,
|
||||
const char *path,
|
||||
CLIENT_DFS_REFERRAL**refs,
|
||||
struct client_dfs_referral **refs,
|
||||
size_t *num_refs,
|
||||
size_t *consumed)
|
||||
{
|
||||
@ -618,7 +618,7 @@ bool cli_dfs_get_referral(TALLOC_CTX *ctx,
|
||||
char *consumed_path = NULL;
|
||||
uint16_t consumed_ucs;
|
||||
uint16 num_referrals;
|
||||
CLIENT_DFS_REFERRAL *referrals = NULL;
|
||||
struct client_dfs_referral *referrals = NULL;
|
||||
bool ret = false;
|
||||
|
||||
*num_refs = 0;
|
||||
@ -687,8 +687,8 @@ bool cli_dfs_get_referral(TALLOC_CTX *ctx,
|
||||
int i;
|
||||
uint16 node_offset;
|
||||
|
||||
referrals = TALLOC_ARRAY(ctx, CLIENT_DFS_REFERRAL,
|
||||
num_referrals);
|
||||
referrals = talloc_array(ctx, struct client_dfs_referral,
|
||||
num_referrals);
|
||||
|
||||
if (!referrals) {
|
||||
goto out;
|
||||
@ -755,7 +755,7 @@ bool cli_resolve_path(TALLOC_CTX *ctx,
|
||||
struct cli_state **targetcli,
|
||||
char **pp_targetpath)
|
||||
{
|
||||
CLIENT_DFS_REFERRAL *refs = NULL;
|
||||
struct client_dfs_referral *refs = NULL;
|
||||
size_t num_refs = 0;
|
||||
size_t consumed = 0;
|
||||
struct cli_state *cli_ipc = NULL;
|
||||
@ -986,7 +986,7 @@ bool cli_check_msdfs_proxy(TALLOC_CTX *ctx,
|
||||
const char *password,
|
||||
const char *domain)
|
||||
{
|
||||
CLIENT_DFS_REFERRAL *refs = NULL;
|
||||
struct client_dfs_referral *refs = NULL;
|
||||
size_t num_refs = 0;
|
||||
size_t consumed = 0;
|
||||
char *fullpath = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user