1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

a fix yet committed to 2.2 sometimes ago and reintroduced here!

This commit is contained in:
Simo Sorce 0001-01-01 00:00:00 +00:00
parent ad8aa47057
commit aff7073dab

View File

@ -533,7 +533,7 @@ static void cache_mangled_name( char *mangled_name, char *raw_name )
if( s1 && (s2 = strrchr( raw_name, '.' )) )
{
i = 1;
while( s1[i] && (tolower( s1[1] ) == s2[i]) )
while( s1[i] && (tolower( s1[i] ) == s2[i]) )
i++;
if( !s1[i] && !s2[i] )
{