diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-08-27 20:20:58 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-08-27 20:20:58 +0000 |
commit | 7971fb1febc67a845cde6bbb9b92842aa0a283ce (patch) | |
tree | e48f2d598ea09f1d7f6fec5decca47885951d7ca /source3/client | |
parent | 7df4b93bed4f4e8e96d44fed7daa9985ebab8862 (diff) | |
download | samba-7971fb1febc67a845cde6bbb9b92842aa0a283ce.tar.gz samba-7971fb1febc67a845cde6bbb9b92842aa0a283ce.tar.bz2 samba-7971fb1febc67a845cde6bbb9b92842aa0a283ce.zip |
charset.c: Added patch for client code page 852 (Eastern European) from
Leos Bitto <bitto@altec.cz>.
clitar.c:
proto.h: Fixed proto mismatch for strslashcmp().
Jermey (jallison@netcom.com)
(This used to be commit c7a4647b7a84641f5fed6b67d45c241fff19c2b3)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/clitar.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/client/clitar.c b/source3/client/clitar.c index f70e639e90..d5bca8c5bb 100644 --- a/source3/client/clitar.c +++ b/source3/client/clitar.c @@ -376,8 +376,7 @@ Compare two strings in a slash insensitive way, allowing s1 to match s2 if s1 is an "initial" string (up to directory marker). Thus, if s2 is a file in any subdirectory of s1, declare a match. ***************************************************************************/ -static -int strslashcmp(char *s1, char *s2) +static int strslashcmp(char *s1, char *s2) { char *s1_0=s1; |