Initial stuff for sqllite version of object-db. Changing to boost::filesystem
diff --git a/daemon/notify-i.cc b/daemon/notify-i.cc
index 0994aa3..0a3880d 100644
--- a/daemon/notify-i.cc
+++ b/daemon/notify-i.cc
@@ -33,9 +33,7 @@
 void
 NotifyI::updateFile (const ::std::string &filename,
                      const ::std::pair<const Ice::Byte*, const Ice::Byte*> &hashRaw,
-                     ::Ice::Long atime,
-                     ::Ice::Long mtime,
-                     ::Ice::Long ctime,
+                     ::Ice::Long wtime,
                      ::Ice::Int mode,
                      const ::Ice::Current&)
 {
@@ -44,7 +42,7 @@
   cout << "updateFile " << filename << " with hash " << hash << endl;
   try
     {
-      m_actionLog->AddActionUpdate (filename, hash, atime, mtime, ctime, mode);
+      m_actionLog->AddActionUpdate (filename, hash, wtime, mode);
 
       m_actionLog->RememberStateInStateLog ();
     }
diff --git a/daemon/notify-i.h b/daemon/notify-i.h
index 9fd7044..426e2a9 100644
--- a/daemon/notify-i.h
+++ b/daemon/notify-i.h
@@ -33,9 +33,7 @@
   virtual void
   updateFile (const ::std::string &filename,
               const ::std::pair<const Ice::Byte*, const Ice::Byte*> &hash,
-              ::Ice::Long atime,
-              ::Ice::Long mtime,
-              ::Ice::Long ctime,
+              ::Ice::Long wtime,
               ::Ice::Int mode,
               const ::Ice::Current& = ::Ice::Current());