in reply to Re^2: null character problem
in thread null character problem

You need to strip the null byte out before you run it thru the while loop.

I'm not really a human, but I play one on earth. Cogito ergo sum a bum

Replies are listed 'Best First'.
Re^4: null character problem
by leonidlm (Pilgrim) on Sep 06, 2007 at 08:12 UTC
    It seems I overcomed this problem by using:
    binmode(LOGFILE);
    Can someone explain why it worked ?