This is the fix for bug #93760. It has a potential of breaking some server

implementations of decoding the authentication string that involve a user
login string of accentuated characters (for example- �����)
This commit is contained in:
gagan 1998-04-24 22:12:09 +00:00
Родитель 4364c856d4
Коммит fb1c4871d5
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -472,7 +472,7 @@ Snip-n-shift, snip-n-shift, etc....
for (p=dst,i=0; i < srclen; i += 3) {
/* Do 3 bytes of src */
register char b0, b1, b2;
register unsigned char b0, b1, b2;
b0 = src[0];
if (i==srclen-1)