Hi! On Fri, 18 Aug 2000, it was written: > seclen=3+((buf[1]&0x0f)<<8)|buf[2]; Stupid me, this time parenthesis is missing. This is a nightmare, I promise I won't flood the mailinglist again ;-(( The correction is: seclen=3+(((buf[1]&0x0f)<<8)|buf[2]); Bye, David