diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2016-11-29 23:58:01 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2016-11-29 23:58:01 -0800 |
commit | 4e99adb0d3727c0ae41edc9b3f52448d0d5b7655 (patch) | |
tree | f0143e67baba31c796461bd2efa8d48f6ef5fa71 /apt-pkg/tagfile.cc | |
parent | ef1e4dfd2853abb2e8900c26c1c17bf053863e85 (diff) |
Avoid wedging the entire system if recoverable :/.
Diffstat (limited to 'apt-pkg/tagfile.cc')
-rw-r--r-- | apt-pkg/tagfile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/tagfile.cc b/apt-pkg/tagfile.cc index 200a7f2fd..72dd475b3 100644 --- a/apt-pkg/tagfile.cc +++ b/apt-pkg/tagfile.cc @@ -215,7 +215,7 @@ bool pkgTagFile::Step(pkgTagSection &Tag) break; if (Resize() == false) - return _error->Error(_("Unable to parse package file %s (%d)"), + return _error->Warning(_("Unable to parse package file %s (%d)"), d->Fd->Name().c_str(), 1); } while (Tag.Scan(d->Start,d->End - d->Start, false) == false); |