- Fixed an off by one in a message from killfile

- Fixed a nasty reentrency bug in nread.c
_ protected devexec.c against the same bug
This commit is contained in:
koennecke
2007-09-06 13:25:51 +00:00
parent e4a55b9d0c
commit c75f556fa5
4 changed files with 28 additions and 1300 deletions

2
danu.c
View File

@ -364,7 +364,7 @@ int NewThousand(pDataNumber self)
if(SCMatchRights(pCon,usMugger))
{
iNum = DecrementDataNumber(self);
snprintf(pBueffel,511,"Data file %d killed", iNum);
snprintf(pBueffel,511,"Data file %d killed", iNum+1);
SCWrite(pCon,pBueffel,eWarning);
return 1;
}