diff options
author | Michael Vogt <egon@bottom> | 2006-05-17 17:58:24 +0200 |
---|---|---|
committer | Michael Vogt <egon@bottom> | 2006-05-17 17:58:24 +0200 |
commit | 4f5bd4471049f89c4ce52864e62f54aadf1804d4 (patch) | |
tree | 25284272f8e1ccfc3450166a01308c21db7223c0 /ftparchive/writer.h | |
parent | 131a2dc0cb36c29d002c2a61f96411e5d84f4adf (diff) | |
parent | 8c64fc132ce0743f02b4d7216a3646a8fb93d8b6 (diff) |
merged with the debian-sid branch
Diffstat (limited to 'ftparchive/writer.h')
-rw-r--r-- | ftparchive/writer.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ftparchive/writer.h b/ftparchive/writer.h index 16d014ef8..1d47d57ec 100644 --- a/ftparchive/writer.h +++ b/ftparchive/writer.h @@ -45,10 +45,11 @@ class FTWScanner bool NoLinkAct; static FTWScanner *Owner; - static int Scanner(const char *File,const struct stat *sb,int Flag); + static int ScannerFTW(const char *File,const struct stat *sb,int Flag); + static int ScannerFile(const char *File, bool ReadLink); bool Delink(string &FileName,const char *OriginalPath, - unsigned long &Bytes,struct stat &St); + unsigned long &Bytes,off_t FileSize); inline void NewLine(unsigned Priority) { @@ -84,6 +85,8 @@ class PackagesWriter : public FTWScanner // Some flags bool DoMD5; + bool DoSHA1; + bool DoSHA256; bool NoOverride; bool DoContents; @@ -170,6 +173,7 @@ protected: { string MD5; string SHA1; + string SHA256; // Limited by FileFd::Size() unsigned long size; ~CheckSum() {}; |