mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-26 16:18:31 +00:00
64-bit ino support and discourage bad use of this header.
This commit is contained in:
parent
e9b5dc16ef
commit
081e9a983c
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=201155
@ -25,6 +25,10 @@
|
|||||||
* $FreeBSD$
|
* $FreeBSD$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef __LIBARCHIVE_BUILD
|
||||||
|
#error This header is only to be used internally to libarchive.
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef ARCHIVE_WRITE_PRIVATE_H_INCLUDED
|
#ifndef ARCHIVE_WRITE_PRIVATE_H_INCLUDED
|
||||||
#define ARCHIVE_WRITE_PRIVATE_H_INCLUDED
|
#define ARCHIVE_WRITE_PRIVATE_H_INCLUDED
|
||||||
|
|
||||||
@ -37,7 +41,7 @@ struct archive_write {
|
|||||||
|
|
||||||
/* Dev/ino of the archive being written. */
|
/* Dev/ino of the archive being written. */
|
||||||
dev_t skip_file_dev;
|
dev_t skip_file_dev;
|
||||||
ino_t skip_file_ino;
|
int64_t skip_file_ino;
|
||||||
|
|
||||||
/* Utility: Pointer to a block of nulls. */
|
/* Utility: Pointer to a block of nulls. */
|
||||||
const unsigned char *nulls;
|
const unsigned char *nulls;
|
||||||
|
Loading…
Reference in New Issue
Block a user