Index: eagle_bin.c =================================================================== --- eagle_bin.c (revision 31965) +++ eagle_bin.c (revision 31966) @@ -1107,7 +1107,7 @@ egb_ctx->free_text_cursor = NULL; if (fread(block, 1, 8, f) != 8) { - rnd_message(RND_MSG_ERROR, "Short attempted free text section read. Text section not found.\n"); + rnd_message(RND_MSG_ERROR, "Short read in free text section preamble. Text section not found.\n"); return -1; } @@ -1124,13 +1124,13 @@ TODO("TODO instead of skipping the text, we need to load it completely with drc_ctx->free_text pointing to it") while (text_remaining > 400) { if (fread(free_text, 1, 400, f) != 400) { - rnd_message(RND_MSG_ERROR, "Short attempted free text block read. Truncated file?\n"); + rnd_message(RND_MSG_ERROR, "Short read: free text block content. Truncated file?\n"); return -1; } text_remaining -= 400; } if (fread(free_text, 1, text_remaining, f) != text_remaining) { - rnd_message(RND_MSG_ERROR, "Short attempted free text block read. Truncated file?\n"); + rnd_message(RND_MSG_ERROR, "Short read: free text block content. Truncated file?\n"); return -1; } return 0;