diff options
| author | Michael Adam <obnox@samba.org> | 2008-12-15 13:33:24 +0100 | 
|---|---|---|
| committer | Michael Adam <obnox@samba.org> | 2008-12-15 13:33:24 +0100 | 
| commit | 606abdceacfcad19735cd80f59aad975a9e97b7c (patch) | |
| tree | 9eda440f71b70a50a45a348c3109762312cf4c6e | |
| parent | 07a21dbfa5b9dc3cc6fa7417b64e4963f111fe1a (diff) | |
| download | samba-606abdceacfcad19735cd80f59aad975a9e97b7c.tar.gz samba-606abdceacfcad19735cd80f59aad975a9e97b7c.tar.bz2 samba-606abdceacfcad19735cd80f59aad975a9e97b7c.zip  | |
s3:loadparm: fix newly introduced leading whitespaces to tabs
Michael
| -rw-r--r-- | source3/param/loadparm.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 7e7a1e505e..c74246c98e 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -425,7 +425,7 @@ struct service {  	bool bHideUnReadable;  	bool bHideUnWriteableFiles;  	bool bBrowseable; -       bool bAccessBasedShareEnum; +	bool bAccessBasedShareEnum;  	bool bAvailable;  	bool bRead_only;  	bool bNo_set_dir; @@ -569,7 +569,7 @@ static struct service sDefault = {  	False,			/* bHideUnReadable */  	False,			/* bHideUnWriteableFiles */  	True,			/* bBrowseable */ -       False,                  /* bAccessBasedShareEnum */ +	False,			/* bAccessBasedShareEnum */  	True,			/* bAvailable */  	True,			/* bRead_only */  	True,			/* bNo_set_dir */  | 
