summaryrefslogtreecommitdiff
path: root/src/lib/content.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/content.cc')
-rw-r--r--src/lib/content.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/content.cc b/src/lib/content.cc
index 44b52a471..d2a07f795 100644
--- a/src/lib/content.cc
+++ b/src/lib/content.cc
@@ -80,7 +80,7 @@ Content::as_xml (xmlpp::Node* node) const
}
void
-Content::examine (shared_ptr<Job>)
+Content::examine (shared_ptr<Job> job)
{
boost::mutex::scoped_lock lm (_mutex);
boost::filesystem::path p = _path;
@@ -90,7 +90,7 @@ Content::examine (shared_ptr<Job>)
if (boost::filesystem::is_regular_file (p)) {
d = md5_digest (p);
} else {
- d = md5_digest_directory (p);
+ d = md5_digest_directory (p, job);
}
lm.lock ();