From 384f303c2cafa6659c24a62209de846cd5d45d84 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 21 Nov 2009 21:36:01 +0100 Subject: s3: Remove a struct typedef --- source3/include/msdfs.h | 4 ++-- source3/include/proto.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/include') diff --git a/source3/include/msdfs.h b/source3/include/msdfs.h index 800393c75d..b389229127 100644 --- a/source3/include/msdfs.h +++ b/source3/include/msdfs.h @@ -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 */ diff --git a/source3/include/proto.h b/source3/include/proto.h index 6a5b3ec18d..970c8af891 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -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, -- cgit