summaryrefslogtreecommitdiff
path: root/apt-pkg/acquire.cc
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2008-10-28 18:14:29 +0100
committerMichael Vogt <mvo@debian.org>2008-10-28 18:14:29 +0100
commit3c8cda8b05d6eeaef76c7ccc673fe378b0c74f37 (patch)
tree3b77f2863a7fb6042d159eef95f17cff4016cbdf /apt-pkg/acquire.cc
parentd210bd7f6a72a2b24a1402f51b39c61438482827 (diff)
fix various -Wall warnings
Diffstat (limited to 'apt-pkg/acquire.cc')
-rw-r--r--apt-pkg/acquire.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc
index 80c2fee0f..38944bbac 100644
--- a/apt-pkg/acquire.cc
+++ b/apt-pkg/acquire.cc
@@ -444,8 +444,9 @@ bool pkgAcquire::Clean(string Dir)
unlink(Dir->d_name);
};
- chdir(StartDir.c_str());
closedir(D);
+ if (chdir(StartDir.c_str()) != 0)
+ return _error->Errno("chdir",_("Unable to change to %s"),StartDir.c_str());
return true;
}
/*}}}*/