diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:55:02 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:55:02 +0000 |
commit | dca1e241d1160635329c87ec987c47717bfce4a8 (patch) | |
tree | 70caaa1ed994179e3465dae7e793f253b757c905 /apt-pkg/acquire.cc | |
parent | 61d6a8de486f2262acbb47cea24f5dae143be8d1 (diff) |
Improved message
Author: jgg
Date: 1999-10-27 05:00:25 GMT
Improved message
Diffstat (limited to 'apt-pkg/acquire.cc')
-rw-r--r-- | apt-pkg/acquire.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc index 0ee7ff447..c4dada5fd 100644 --- a/apt-pkg/acquire.cc +++ b/apt-pkg/acquire.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acquire.cc,v 1.41 1999/10/18 02:53:05 jgg Exp $ +// $Id: acquire.cc,v 1.42 1999/10/27 05:00:25 jgg Exp $ /* ###################################################################### Acquire - File Acquiration @@ -52,11 +52,11 @@ pkgAcquire::pkgAcquire(pkgAcquireStatus *Log) : Log(Log) struct stat St; if (stat((_config->FindDir("Dir::State::lists") + "partial/").c_str(),&St) != 0 || S_ISDIR(St.st_mode) == 0) - _error->Error("Lists directory %s/partial is missing", + _error->Error("Lists directory %s/partial is missing.", _config->FindDir("Dir::State::lists").c_str()); if (stat((_config->FindDir("Dir::Cache::Archives") + "partial/").c_str(),&St) != 0 || S_ISDIR(St.st_mode) == 0) - _error->Error("Archive directory %s/partial is missing", + _error->Error("Archive directory %s/partial is missing.", _config->FindDir("Dir::Cache::Archives").c_str()); } /*}}}*/ |