Home | History | Annotate | Download | only in recovery

Lines Matching full:tmplog

259         FILE *tmplog = fopen(source, "r");
260 if (tmplog != NULL) {
262 fseek(tmplog, tmplog_offset, SEEK_SET); // Since last write
265 while (fgets(buf, sizeof(buf), tmplog)) fputs(buf, log);
267 tmplog_offset = ftell(tmplog);
269 check_and_fclose(tmplog, source);