mirror of
https://github.com/samba-team/samba.git
synced 2025-12-16 00:23:52 +03:00
r570: Remove lots of globals to handle case issues - move them
to connection struct entries (as they should have been from the start). Jerry, once you've cut over to 3.0.4 release branch I'll add this to 3.0 also. - Jerry cut over :-). Jeremy.
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
f3efc098d1
commit
578a508509
@@ -122,9 +122,9 @@
|
||||
#define MAP_HIDDEN(conn) ((conn) && lp_map_hidden((conn)->service))
|
||||
#define MAP_SYSTEM(conn) ((conn) && lp_map_system((conn)->service))
|
||||
#define MAP_ARCHIVE(conn) ((conn) && lp_map_archive((conn)->service))
|
||||
#define IS_HIDDEN_PATH(conn,path) ((conn) && is_in_path((path),(conn)->hide_list))
|
||||
#define IS_VETO_PATH(conn,path) ((conn) && is_in_path((path),(conn)->veto_list))
|
||||
#define IS_VETO_OPLOCK_PATH(conn,path) ((conn) && is_in_path((path),(conn)->veto_oplock_list))
|
||||
#define IS_HIDDEN_PATH(conn,path) ((conn) && is_in_path((path),(conn)->hide_list,(conn)->case_sensitive))
|
||||
#define IS_VETO_PATH(conn,path) ((conn) && is_in_path((path),(conn)->veto_list,(conn)->case_sensitive))
|
||||
#define IS_VETO_OPLOCK_PATH(conn,path) ((conn) && is_in_path((path),(conn)->veto_oplock_list,(conn)->case_sensitive))
|
||||
|
||||
/*
|
||||
* Used by the stat cache code to check if a returned
|
||||
|
||||
Reference in New Issue
Block a user