Fixed msg renumber bug and Makefile bug

This commit is contained in:
Michiel Broek
2003-12-10 19:49:20 +00:00
parent 8e1fe37a6f
commit 20e40b3da3
3 changed files with 16 additions and 10 deletions

View File

@@ -566,7 +566,7 @@ int JAM_Open(char *Msgbase)
fdJlr = open(File, O_RDWR|O_CREAT, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP);
RetVal = TRUE;
memmove(BaseName, Msgbase, strlen(Msgbase));
strcpy(BaseName, Msgbase);
} else {
close(fdHdr);
fdHdr = -1;
@@ -749,7 +749,8 @@ void JAM_Pack(void)
unlink(New);
rename(File, New);
JAM_Open(BaseName);
sprintf(File, "%s", BaseName);
JAM_Open(File);
}
if (fdnHdr != -1)