search for: bstrictsync

Displaying 1 result from an estimated 1 matches for "bstrictsync".

Did you mean: strictsync
2008 Dec 23
0
[jra@samba.org: Patch to improve Samba write speeds on Linux ext3 with 3.2.x]
...iff --git a/source/param/loadparm.c b/source/param/loadparm.c index 81a308e..f3878c2 100644 --- a/source/param/loadparm.c +++ b/source/param/loadparm.c @@ -445,7 +445,7 @@ struct service { bool bWidelinks; bool bSymlinks; bool bSyncAlways; - bool bStrictAllocate; + int iStrictAllocate; bool bStrictSync; char magic_char; struct bitmap *copymap; @@ -588,7 +588,7 @@ static struct service sDefault = { True, /* bWidelinks */ True, /* bSymlinks */ False, /* bSyncAlways */ - False, /* bStrictAllocate */ + STRICT_ALLOCATE_OFF, /* iStrictAllocate */ False, /* bStrictSync */ '~&...