summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1997-11-28 05:48:48 +0000
committerAndrew Tridgell <tridge@samba.org>1997-11-28 05:48:48 +0000
commit7f2cd86196efd218b13b7d0d1f9a2b4fc0811760 (patch)
treee2f1d61dccc7aa3e2a4fbe7218b566f032a0218c /source3
parentf4e60aab71daaeb23d886097ef473e4b7744c66d (diff)
downloadsamba-7f2cd86196efd218b13b7d0d1f9a2b4fc0811760.tar.gz
samba-7f2cd86196efd218b13b7d0d1f9a2b4fc0811760.tar.bz2
samba-7f2cd86196efd218b13b7d0d1f9a2b4fc0811760.zip
get_entries is an int not a bool
(This used to be commit 84215c9b91f3c5130b172a3bbc83c7ddd66c5cb8)
Diffstat (limited to 'source3')
-rw-r--r--source3/include/smb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h
index 6056ccd70f..49854a2512 100644
--- a/source3/include/smb.h
+++ b/source3/include/smb.h
@@ -1601,7 +1601,7 @@ struct share_ops {
BOOL (*stop_mgmt)(void);
BOOL (*lock_entry)(int , uint32 , uint32 , int *);
BOOL (*unlock_entry)(int , uint32 , uint32 , int );
- BOOL (*get_entries)(int , int , uint32 , uint32 , share_mode_entry **);
+ int (*get_entries)(int , int , uint32 , uint32 , share_mode_entry **);
void (*del_entry)(int , int );
BOOL (*set_entry)(int , int , uint16 , uint16 );
BOOL (*remove_oplock)(int , int);