]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/acquire.cc
debian/changelog: make the build-dep changelog entry match (debian) reality
[apt.git] / apt-pkg / acquire.cc
index 80c2fee0f19b2feee5575a7f62e2568afaee9fc0..38944bbacd63efcbdcbf75f3e533c0a77a80ac81 100644 (file)
@@ -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;   
 }
                                                                        /*}}}*/