tar: Use more conventional name for iterator
This commit is contained in:
parent
76eb6bdf42
commit
624bf64ac5
6
tar.c
6
tar.c
|
@ -148,7 +148,7 @@ archive(const char *path)
|
||||||
struct header *h;
|
struct header *h;
|
||||||
struct passwd *pw;
|
struct passwd *pw;
|
||||||
struct stat st;
|
struct stat st;
|
||||||
size_t chksum, x;
|
size_t chksum, i;
|
||||||
ssize_t l, r;
|
ssize_t l, r;
|
||||||
int fd = -1;
|
int fd = -1;
|
||||||
|
|
||||||
|
@ -198,8 +198,8 @@ archive(const char *path)
|
||||||
}
|
}
|
||||||
|
|
||||||
memset(h->chksum, ' ', sizeof(h->chksum));
|
memset(h->chksum, ' ', sizeof(h->chksum));
|
||||||
for (x = 0, chksum = 0; x < sizeof(*h); x++)
|
for (i = 0, chksum = 0; i < sizeof(*h); i++)
|
||||||
chksum += b[x];
|
chksum += b[i];
|
||||||
putoctal(h->chksum, chksum, sizeof(h->chksum));
|
putoctal(h->chksum, chksum, sizeof(h->chksum));
|
||||||
ewrite(tarfd, b, BLKSIZ);
|
ewrite(tarfd, b, BLKSIZ);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user