1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-19 04:23:48 +03:00

r6625: Remove another global variable left over from a long time ago (magic char).

Jeremy.
(This used to be commit b1bfa9cb37)
This commit is contained in:
Jeremy Allison
2005-05-06 08:07:39 +00:00
committed by Gerald (Jerry) Carter
parent 61ffe158f2
commit 02e3717ee9
9 changed files with 49 additions and 47 deletions

View File

@@ -5,10 +5,10 @@
*/
struct mangle_fns {
BOOL (*is_mangled)(const char *s);
BOOL (*is_8_3)(const char *fname, BOOL check_case, BOOL allow_wildcards);
void (*reset)(void);
BOOL (*check_cache)(char *s, size_t maxlen);
void (*name_map)(char *OutName, BOOL need83, BOOL cache83, int default_case);
BOOL (*is_mangled)(const char *s, int snum);
BOOL (*is_8_3)(const char *fname, BOOL check_case, BOOL allow_wildcards, int snum);
BOOL (*check_cache)(char *s, size_t maxlen, int snum);
void (*name_map)(char *OutName, BOOL need83, BOOL cache83, int default_case, int snum);
};
#endif /* _MANGLE_H_ */