diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:55:03 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:55:03 +0000 |
commit | 0c55d1d210d445b85116ea5add79e25a928d0d5a (patch) | |
tree | 458f7c7ed707218ca1f802639caee52cb43b9234 /apt-pkg | |
parent | dca1e241d1160635329c87ec987c47717bfce4a8 (diff) |
Removed double slash
Author: jgg
Date: 1999-10-27 22:34:29 GMT
Removed double slash
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/acquire.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc index c4dada5fd..a7b28499a 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.42 1999/10/27 05:00:25 jgg Exp $ +// $Id: acquire.cc,v 1.43 1999/10/27 22:34:29 jgg Exp $ /* ###################################################################### Acquire - File Acquiration @@ -48,15 +48,15 @@ pkgAcquire::pkgAcquire(pkgAcquireStatus *Log) : Log(Log) Debug = _config->FindB("Debug::pkgAcquire",false); - // This is really a stupid place for this, but people whine so much.. + // This is really a stupid place for this 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 %spartial 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 %spartial is missing.", _config->FindDir("Dir::Cache::Archives").c_str()); } /*}}}*/ |