From f7419172f03089276cab71c41419a5c57508d42e Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 26 Sep 2011 11:30:05 -0400 Subject: s3-passdb: Cleanup use of fstring and move to talloc. Signed-off-by: Andreas Schneider --- source3/include/passdb.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/include/passdb.h') 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 */ }; -- cgit