Matthew Woehlke <[EMAIL PROTECTED]> writes: > First, a build failure: I had to change src/xheader.c:1097: > > - const struct timespec mtime = data ? *(struct timespec *) data : > st->mtime; > + const struct timespec mtime = data ? *(const struct timespec *) > data : st->mtime;
This has been fixed in a different way in the tar CVS, thus: - const struct timespec mtime = data ? *(struct timespec *) data : st->mtime; - code_time (mtime, keyword, xhdr); + struct timespec const *mtime = data; + code_time (mtime ? *mtime : st->mtime, keyword, xhdr);
