From 7f2cd86196efd218b13b7d0d1f9a2b4fc0811760 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 28 Nov 1997 05:48:48 +0000 Subject: get_entries is an int not a bool (This used to be commit 84215c9b91f3c5130b172a3bbc83c7ddd66c5cb8) --- source3/include/smb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') 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); -- cgit