replace
if(len)
passwd[--len] = 0;
i = clear_pwd(i-1, i);
break;
with
if(len)
passwd[--len] = 0;
if(i)
i = clear_pwd(i-1, i);
break;
to avoid echoing '*' simbols beyond screen border,
after continuous pressing of BackSpace button.
wbr, elide.
Received on Fri Oct 20 2006 - 00:06:36 UTC
This archive was generated by hypermail 2.2.0 : Sun Jul 13 2008 - 14:32:08 UTC