diff options
author | Jeremy Allison <jra@samba.org> | 2005-05-06 08:07:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:56:47 -0500 |
commit | 02e3717ee9e045d197d845489e84ac40083ca868 (patch) | |
tree | dddd1100fcec3249f31741b8564d635396873775 /source3/include | |
parent | 61ffe158f2d3f149b230cc31c4b58d7d025ab28d (diff) | |
download | samba-02e3717ee9e045d197d845489e84ac40083ca868.tar.gz samba-02e3717ee9e045d197d845489e84ac40083ca868.tar.bz2 samba-02e3717ee9e045d197d845489e84ac40083ca868.zip |
r6625: Remove another global variable left over from a long time ago (magic char).
Jeremy.
(This used to be commit b1bfa9cb37deb22d1d08bc60ba44d61334f6446e)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/mangle.h | 8 |
1 files changed, 4 insertions, 4 deletions
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_ */ |