diff options
author | Jaywalker <jwilliams@nsllc.com> | 2018-02-06 23:51:41 -0600 |
---|---|---|
committer | Jaywalker <jwilliams@nsllc.com> | 2018-02-06 23:51:41 -0600 |
commit | 2d71f8c24d490b5a3773821264124f0ed5c9a9d2 (patch) | |
tree | 3b77d056cae38d88a93aeb691d9c5364bedb4b30 /apt-pkg/tagfile.h | |
parent | 3bfcf8ca7023843a9b12de8e58bccab32b4c1a43 (diff) |
Fixed system() using coolstar's patch and added other required patches
Diffstat (limited to 'apt-pkg/tagfile.h')
-rw-r--r-- | apt-pkg/tagfile.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apt-pkg/tagfile.h b/apt-pkg/tagfile.h index bd3b4d1ea..a788e1044 100644 --- a/apt-pkg/tagfile.h +++ b/apt-pkg/tagfile.h @@ -138,9 +138,10 @@ class pkgTagSection * @return \b true if section end was found, \b false otherwise. * Beware that internal state will be inconsistent if \b false is returned! */ - APT_MUSTCHECK bool Scan(const char *Start, unsigned long MaxLength, bool const SupportComments); + APT_MUSTCHECK bool Scan(const char *Start, unsigned long MaxLength, bool const SupportComments = true); inline unsigned long size() const {return Stop - Section;}; + void Trim(); void TrimRecord(bool BeforeRecord, const char* &End, bool SupportComments); /** \brief amount of Tags in the current section |