Mail Archives: djgpp-workers/2002/01/30/13:09:13
The tarchange.lst file produced by `djtar -x' contains
entries of the form
old_filename -> new_filename
If the `->' were not written, any resulting `tarchange.lst'
file could be used without modification as the ChangeFile
argument to the djtar `-n' option in a future djtar -x.
What do others think about this?
% diff -u djtar.old djtar.c
--- djtar.old Fri Oct 5 15:52:50 2001
+++ djtar.c Wed Jan 30 11:34:41 2002
@@ -164,7 +164,7 @@
{
CHANGE *c;
for (c=change_root; c; c=c->next)
- fprintf(change_file, "%s -> %s\n", c->old, c->new);
+ fprintf(change_file, "%s %s\n", c->old, c->new);
}
int
- Raw text -