Skip to content

Commit

Permalink
Merge pull request #9 from fkie/crawlfix
Browse files Browse the repository at this point in the history
Fix inverted logic for crawler cache
  • Loading branch information
dirk-thomas committed Feb 22, 2013
2 parents 982607a + 6a64de1 commit 9307d9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rospack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ Rosstackage::crawl(std::vector<std::string> search_path,
if(crawled_)
{
bool same_paths = true;
if(search_paths_.size() == search_path.size())
if(search_paths_.size() != search_path.size())
same_paths = false;
else
{
Expand Down

0 comments on commit 9307d9e

Please # to comment.