From abb81cfe2688dec69fe154d3abff8eff388c779c Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 2 Aug 2005 23:24:32 +0000 Subject: r8959: Make msdfs code talloc based. Fix leaks. Jeremy. (This used to be commit 076023df8ea7c0f03baf8102e55d347e05542c7b) --- source3/include/msdfs.h | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'source3/include/msdfs.h') diff --git a/source3/include/msdfs.h b/source3/include/msdfs.h index ff035ddd493..f7aa494cd2c 100644 --- a/source3/include/msdfs.h +++ b/source3/include/msdfs.h @@ -44,23 +44,20 @@ typedef struct _client_referral { pstring dfspath; } CLIENT_DFS_REFERRAL; -struct referral -{ +struct referral { pstring alternate_path; /* contains the path referred */ uint32 proximity; uint32 ttl; /* how long should client cache referral */ }; -struct junction_map -{ - pstring service_name; - pstring volume_name; - int referral_count; - struct referral* referral_list; +struct junction_map { + pstring service_name; + pstring volume_name; + int referral_count; + struct referral* referral_list; }; -struct dfs_path -{ +struct dfs_path { pstring hostname; pstring servicename; pstring reqpath; -- cgit