From 3b8c3e5dde9a5324eb82496f036d3a88349c3894 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 10 Nov 2013 11:56:06 +0100 Subject: [PATCH] smbd: Use fstring in conn_tdb.h It might be legacy, but as long as we have it, we can make use of it. Signed-off-by: Volker Lendecke Reviewed-by: Ira Cooper --- source3/lib/conn_tdb.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source3/lib/conn_tdb.h b/source3/lib/conn_tdb.h index b91a153740d..217814faa54 100644 --- a/source3/lib/conn_tdb.h +++ b/source3/lib/conn_tdb.h @@ -29,9 +29,9 @@ struct connections_data { int cnum; uid_t uid; gid_t gid; - char servicename[FSTRING_LEN]; - char addr[FSTRING_LEN]; - char machine[FSTRING_LEN]; + fstring servicename; + fstring addr; + fstring machine; time_t start; }; -- 2.11.4.GIT