fix bug printing status of unprocessed records
This commit is contained in:
@ -139,6 +139,7 @@ StreamCore()
|
|||||||
StreamCore** pstream;
|
StreamCore** pstream;
|
||||||
for (pstream = &first; *pstream; pstream = &(*pstream)->next);
|
for (pstream = &first; *pstream; pstream = &(*pstream)->next);
|
||||||
*pstream = this;
|
*pstream = this;
|
||||||
|
activeCommand = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
StreamCore::
|
StreamCore::
|
||||||
@ -1760,7 +1761,7 @@ void StreamCore::
|
|||||||
printStatus(StreamBuffer& buffer)
|
printStatus(StreamBuffer& buffer)
|
||||||
{
|
{
|
||||||
buffer.print("active command=%s ",
|
buffer.print("active command=%s ",
|
||||||
activeCommand ? commandName(*activeCommand) : "NULL");
|
activeCommand ? commandName(*activeCommand) : "none");
|
||||||
buffer.print("flags=0x%04lx ", flags);
|
buffer.print("flags=0x%04lx ", flags);
|
||||||
if (flags & IgnoreExtraInput) buffer.append("IgnoreExtraInput ");
|
if (flags & IgnoreExtraInput) buffer.append("IgnoreExtraInput ");
|
||||||
if (flags & InitRun) buffer.append("InitRun ");
|
if (flags & InitRun) buffer.append("InitRun ");
|
||||||
|
Reference in New Issue
Block a user