Home | History | Annotate | Download | only in recovery

Lines Matching full:tmplog

315         FILE *tmplog = fopen(source, "r");
316 if (tmplog != NULL) {
318 fseek(tmplog, tmplog_offset, SEEK_SET); // Since last write
321 while (fgets(buf, sizeof(buf), tmplog)) fputs(buf, log);
323 tmplog_offset = ftell(tmplog);
325 check_and_fclose(tmplog, source);