diff options
author | Julian Andres Klode <jak@debian.org> | 2016-03-15 11:40:10 +0100 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2016-03-15 12:33:21 +0100 |
commit | 8c9b7725c3d89461e78061aff4bc644cdb237fe7 (patch) | |
tree | a8430bf24a17fe32da73a4fc80801b6664347046 /apt-pkg | |
parent | 08fd77e83528fd03795524adf76e359ae2b56e06 (diff) |
apt-pkg/acquire-worker.cc: Introduce 104 Warning message
This can be used by workers to send warnings to the main
program. The messages will be passed to _error->Warning()
by APT with the URI prepended.
We are not going to make that really public now, as the
interface might change a bit.
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/acquire-worker.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apt-pkg/acquire-worker.cc b/apt-pkg/acquire-worker.cc index 37804c67a..c9f0e7f6e 100644 --- a/apt-pkg/acquire-worker.cc +++ b/apt-pkg/acquire-worker.cc @@ -277,6 +277,10 @@ bool pkgAcquire::Worker::RunMessages() } break; } + // 104 Warning + case 104: + _error->Warning("%s: %s", Itm->URI.c_str(), LookupTag(Message,"Message").c_str()); + break; // 200 URI Start case 200: |