mirror of
https://github.com/KDE/konsole.git
synced 2025-12-23 23:38:08 -05:00
Fix issue with zmodem dialog not popping up.
BUG: 145177 svn path=/branches/KDE/3.5/kdebase/konsole/; revision=846506
This commit is contained in:
@@ -333,8 +333,8 @@ void TEmulation::onRcvBlock(const char *s, int len)
|
||||
}
|
||||
|
||||
// Otherwise, bulk decode until the next control code
|
||||
for(l = i; l < len-1; ++l)
|
||||
if ((unsigned char) s[l] < 32)
|
||||
for(l = i; l < len; l++)
|
||||
if ((unsigned char) s[l+1] < 32)
|
||||
break;
|
||||
|
||||
r = decoder->toUnicode(&s[i],l-i+1);
|
||||
|
||||
Reference in New Issue
Block a user