Run through ident, fix comments
This commit is contained in:
@@ -55,7 +55,6 @@ file_header_t *get_header_tar(FILE *tar_stream)
|
|||||||
if (fread(tar.raw, 1, 512, tar_stream) != 512) {
|
if (fread(tar.raw, 1, 512, tar_stream) != 512) {
|
||||||
/* Unfortunatly its common for tar files to have all sorts of
|
/* Unfortunatly its common for tar files to have all sorts of
|
||||||
* trailing garbage, fail silently */
|
* trailing garbage, fail silently */
|
||||||
// error_msg("Couldnt read header");
|
|
||||||
return (NULL);
|
return (NULL);
|
||||||
}
|
}
|
||||||
archive_offset += 512;
|
archive_offset += 512;
|
||||||
@@ -93,7 +92,8 @@ file_header_t *get_header_tar(FILE *tar_stream)
|
|||||||
if (tar.formated.prefix[0] == 0) {
|
if (tar.formated.prefix[0] == 0) {
|
||||||
tar_entry->name = xstrdup(tar.formated.name);
|
tar_entry->name = xstrdup(tar.formated.name);
|
||||||
} else {
|
} else {
|
||||||
tar_entry->name = concat_path_file(tar.formated.prefix, tar.formated.name);
|
tar_entry->name =
|
||||||
|
concat_path_file(tar.formated.prefix, tar.formated.name);
|
||||||
}
|
}
|
||||||
|
|
||||||
tar_entry->mode = strtol(tar.formated.mode, NULL, 8);
|
tar_entry->mode = strtol(tar.formated.mode, NULL, 8);
|
||||||
@@ -126,11 +126,11 @@ file_header_t *get_header_tar(FILE *tar_stream)
|
|||||||
tar_entry->gid = strtol(tar.formated.gid, NULL, 8);
|
tar_entry->gid = strtol(tar.formated.gid, NULL, 8);
|
||||||
tar_entry->size = strtol(tar.formated.size, NULL, 8);
|
tar_entry->size = strtol(tar.formated.size, NULL, 8);
|
||||||
tar_entry->mtime = strtol(tar.formated.mtime, NULL, 8);
|
tar_entry->mtime = strtol(tar.formated.mtime, NULL, 8);
|
||||||
tar_entry->link_name = strlen(tar.formated.linkname) ?
|
tar_entry->link_name =
|
||||||
xstrdup(tar.formated.linkname) : NULL;
|
strlen(tar.formated.linkname) ? xstrdup(tar.formated.linkname) : NULL;
|
||||||
tar_entry->device = (strtol(tar.formated.devmajor, NULL, 8) << 8) +
|
tar_entry->device =
|
||||||
|
(strtol(tar.formated.devmajor, NULL, 8) << 8) +
|
||||||
strtol(tar.formated.devminor, NULL, 8);
|
strtol(tar.formated.devminor, NULL, 8);
|
||||||
|
|
||||||
return (tar_entry);
|
return (tar_entry);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user