$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Roland (roland.schwarz_at_[hidden])
Date: 2004-08-01 20:27:44
Oops, a small (yet not very harmful) bug in the tls_prepare loop:
I forgot to write the end marker.
while (pfbegin < pfend) {
if (*pfbegin != 0) {
*pfdst = *pfbegin;
++pfdst;
}
++pfbegin;
}
*pfdst = 0; /* write the end marker of course! */
Roland