From 02e3717ee9e045d197d845489e84ac40083ca868 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 6 May 2005 08:07:39 +0000 Subject: r6625: Remove another global variable left over from a long time ago (magic char). Jeremy. (This used to be commit b1bfa9cb37deb22d1d08bc60ba44d61334f6446e) --- source3/include/mangle.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source3/include') diff --git a/source3/include/mangle.h b/source3/include/mangle.h index 08d511689d..2bdef4ad64 100644 --- a/source3/include/mangle.h +++ b/source3/include/mangle.h @@ -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_ */ -- cgit