]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/fileutl.cc
correct some style/performance/warnings from cppcheck
[apt.git] / apt-pkg / contrib / fileutl.cc
index efbf7aaf4c2300ac61d309c63465efb67a4430b3..1c8acd513f5dedc8df202dfb2023944e413156e9 100644 (file)
@@ -319,7 +319,7 @@ bool CreateDirectory(string const &Parent, string const &Path)
       return false;
 
    // we are not going to create directories "into the blue"
-   if (Path.find(Parent, 0) != 0)
+   if (Path.compare(0, Parent.length(), Parent) != 0)
       return false;
 
    vector<string> const dirs = VectorizeString(Path.substr(Parent.size()), '/');