summaryrefslogtreecommitdiffstats
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
commit84215c9b91f3c5130b172a3bbc83c7ddd66c5cb8 (patch)
tree91b300f6aebbea4d07f87eae4cc507f40fbc0bfa
parent9cac33a13dc7c4890628436b80f6cbd8361deab2 (diff)
downloadsamba-84215c9b91f3c5130b172a3bbc83c7ddd66c5cb8.tar.gz
samba-84215c9b91f3c5130b172a3bbc83c7ddd66c5cb8.tar.xz
samba-84215c9b91f3c5130b172a3bbc83c7ddd66c5cb8.zip
get_entries is an int not a bool
-rw-r--r--source/include/smb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/include/smb.h b/source/include/smb.h
index 6056ccd70f7..49854a2512e 100644
--- a/source/include/smb.h
+++ b/source/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);