X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fupdate.c;h=f98dbb0493235a1988e655aaa898e69cd2bdbe5d;hb=bda7d590108e6703d0d9f70fac5ae9635b7fd154;hp=c7e03192c5d9314687d26dcd4f3c4d9d1dac9539;hpb=91b2d65e9dccae981f308a659d6c7bdd32285598;p=chaz%2Ftar diff --git a/src/update.c b/src/update.c index c7e0319..f98dbb0 100644 --- a/src/update.c +++ b/src/update.c @@ -32,8 +32,10 @@ extern union block *current_block; /* We've hit the end of the old stuff, and its time to start writing new stuff to the tape. This involves seeking back one record and - re-writing the current record (which has been changed). */ -int time_to_start_writing; + re-writing the current record (which has been changed). + FIXME: Either eliminate it or move it to common.h. +*/ +bool time_to_start_writing; /* Pointer to where we started to write in the first record we write out. This is used if we can't backspace the output and have to null out the @@ -175,7 +177,7 @@ update_archive (void) } reset_eof (); - time_to_start_writing = 1; + time_to_start_writing = true; output_start = current_block->buffer; {