summaryrefslogtreecommitdiff
path: root/source3/utils/net.h
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-06-11 02:29:58 +0200
committerGünther Deschner <gd@samba.org>2008-06-13 23:39:08 +0200
commit339d868b173ed55554fb596a8fcfdbab99e64ec0 (patch)
treed69748c024e3349c9b91e0f17b6da7df6b34d55a /source3/utils/net.h
parent4cae70e548aeca7549da398c90bb7c34b12961e1 (diff)
downloadsamba-339d868b173ed55554fb596a8fcfdbab99e64ec0.tar.gz
samba-339d868b173ed55554fb596a8fcfdbab99e64ec0.tar.bz2
samba-339d868b173ed55554fb596a8fcfdbab99e64ec0.zip
net_vampire: start using talloc for the ldif vampire code.
Guenther (This used to be commit ae179e4f3faccbf2c9f19b6f070f5daf87cdfc50)
Diffstat (limited to 'source3/utils/net.h')
-rw-r--r--source3/utils/net.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/utils/net.h b/source3/utils/net.h
index 65c8d75584..e5bd2ab692 100644
--- a/source3/utils/net.h
+++ b/source3/utils/net.h
@@ -148,13 +148,13 @@ enum netdom_domain_t { ND_TYPE_NT4, ND_TYPE_AD };
/* Structure for mapping accounts to groups */
/* Array element is the group rid */
typedef struct _groupmap {
- uint32 rid;
- uint32 gidNumber;
- fstring sambaSID;
- fstring group_dn;
+ uint32_t rid;
+ uint32_t gidNumber;
+ const char *sambaSID;
+ const char *group_dn;
} GROUPMAP;
typedef struct _accountmap {
- uint32 rid;
- fstring cn;
+ uint32_t rid;
+ const char *cn;
} ACCOUNTMAP;