diff options
author | Michael Vogt <mvo@debian.org> | 2014-06-06 11:24:44 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-06-06 11:24:44 +0200 |
commit | 0dd2cbc08aefb73421d5aa31bc62184181a28c32 (patch) | |
tree | 841a6b9d3052a2efa4aa99395f5bbd6427816a72 /cmdline | |
parent | d91e3cfa1992599c088673ef68bcdfd4d0aedc85 (diff) |
cmdline/apt-helper.cc: use less generic description/short-description
Diffstat (limited to 'cmdline')
-rw-r--r-- | cmdline/apt-helper.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmdline/apt-helper.cc b/cmdline/apt-helper.cc index 2c1107d90..b0edafcbd 100644 --- a/cmdline/apt-helper.cc +++ b/cmdline/apt-helper.cc @@ -43,7 +43,8 @@ static bool DoDownloadFile(CommandLine &CmdL) std::string hash; if (CmdL.FileSize() > 3) hash = CmdL.FileList[3]; - new pkgAcqFile(&Fetcher, download_uri, hash, 0, "desc", "short-desc", + // we use download_uri as descr and targetfile as short-descr + new pkgAcqFile(&Fetcher, download_uri, hash, 0, download_uri, targetfile, "dest-dir-ignored", targetfile); Fetcher.Run(); bool Failed = false; |