s3: Remove a struct typedef
authorVolker Lendecke <vl@samba.org>
Sat, 21 Nov 2009 20:36:01 +0000 (21:36 +0100)
committerVolker Lendecke <vl@samba.org>
Sat, 21 Nov 2009 22:19:50 +0000 (23:19 +0100)
source3/include/msdfs.h
source3/include/proto.h
source3/libsmb/clidfs.c

index 800393c75ddb49fec66947c24ade9c4177cfa857..b3892291272ef06ef0451f358e693162b14377bf 100644 (file)
 #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 */
index 6a5b3ec18d756cab715d8b4a31216f3dbbb93f7b..970c8af89172c7c91ae3fbb2297db3d524c83750 100644 (file)
@@ -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,
index 0afb75975ed80f1ff8de094672ac4f85571e3dff..afae4ff2ab1aa98c1a51bb6027faf84d89b7f5d1 100644 (file)
@@ -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;