summaryrefslogtreecommitdiff
path: root/source3/include/passdb.h
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2011-09-26 11:30:05 -0400
committerAndreas Schneider <asn@cryptomilk.org>2011-09-26 18:25:26 +0200
commitf7419172f03089276cab71c41419a5c57508d42e (patch)
tree1fb9960270a0395fe6e3220d3caeeaad2e0d0cb6 /source3/include/passdb.h
parent0ff0b37f43d6a3ad52b1c954bc8f921222424c0d (diff)
downloadsamba-f7419172f03089276cab71c41419a5c57508d42e.tar.gz
samba-f7419172f03089276cab71c41419a5c57508d42e.tar.bz2
samba-f7419172f03089276cab71c41419a5c57508d42e.zip
s3-passdb: Cleanup use of fstring and move to talloc.
Signed-off-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/include/passdb.h')
-rw-r--r--source3/include/passdb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/passdb.h b/source3/include/passdb.h
index 1d0f2f36be..ea53279d42 100644
--- a/source3/include/passdb.h
+++ b/source3/include/passdb.h
@@ -218,8 +218,8 @@ struct samu {
};
struct acct_info {
- fstring acct_name; /* account name */
- fstring acct_desc; /* account name */
+ char *acct_name; /* account name */
+ char *acct_desc; /* account name */
uint32_t rid; /* domain-relative RID */
};