diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2008-08-06 14:01:29 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2008-08-06 14:01:29 +0200 |
commit | cb714f283871f3deb9e0f8566ab6866ae9d7791e (patch) | |
tree | 85e812387cd35c5982405c6666ca65fddbdda27b /apt-pkg/acquire.cc | |
parent | cbf217843cc8eaaebd6d798854d92aab961efd9d (diff) | |
parent | 496a05c628d39c981a8f472f16629043d8508808 (diff) |
* fix various -Wall warnings
* make "apt-get build-dep" installed packages marked automatic
by default. This can be changed by setting the value of
APT::Get::Build-Dep-Automatic to false (thanks to Aaron
Haviland, closes: #44874, LP: #248268)
Diffstat (limited to 'apt-pkg/acquire.cc')
-rw-r--r-- | apt-pkg/acquire.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc index 6840ae120..91f603889 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; } /*}}}*/ |