mirror of
https://github.com/Xevion/easy7zip.git
synced 2026-01-31 20:24:05 -06:00
9.34
This commit is contained in:
committed by
Kornel Lesiński
parent
83f8ddcc5b
commit
f08f4dcc3c
Executable → Regular
+5
-7
@@ -1,4 +1,4 @@
|
||||
// Archive/Tar/Header.h
|
||||
// Archive/TarHeader.cpp
|
||||
|
||||
#include "StdAfx.h"
|
||||
|
||||
@@ -8,18 +8,16 @@ namespace NArchive {
|
||||
namespace NTar {
|
||||
namespace NFileHeader {
|
||||
|
||||
// The checksum field is filled with this while the checksum is computed.
|
||||
const char *kCheckSumBlanks = " "; // 8 blanks, no null
|
||||
|
||||
const char *kLongLink = "././@LongLink";
|
||||
const char *kLongLink2 = "@LongLink";
|
||||
|
||||
// The magic field is filled with this if uname and gname are valid.
|
||||
namespace NMagic
|
||||
{
|
||||
const char *kUsTar = "ustar"; // 5 chars
|
||||
const char *kGNUTar = "GNUtar "; // 7 chars and a null
|
||||
const char *kEmpty = "\0\0\0\0\0\0\0\0"; // 7 chars and a null
|
||||
// const char *kUsTar = "ustar"; // 5 chars
|
||||
// const char *kGNUTar = "GNUtar "; // 7 chars and a null
|
||||
// const char *kEmpty = "\0\0\0\0\0\0\0\0";
|
||||
const char kUsTar_00[8] = { 'u', 's', 't', 'a', 'r', 0, '0', '0' } ;
|
||||
}
|
||||
|
||||
}}}
|
||||
|
||||
Reference in New Issue
Block a user