diff options
author | Marc Laukien <marc@zeroc.com> | 2002-09-11 23:38:29 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-09-11 23:38:29 +0000 |
commit | a4cf1dbc4b6b3b66a8158e887d2a3744f043435e (patch) | |
tree | 5fd2d042a22ec6a30bb590d88036a0079bc6bb07 /cpp/src/IcePatch/Server.cpp | |
parent | fixes (diff) | |
download | ice-a4cf1dbc4b6b3b66a8158e887d2a3744f043435e.tar.bz2 ice-a4cf1dbc4b6b3b66a8158e887d2a3744f043435e.tar.xz ice-a4cf1dbc4b6b3b66a8158e887d2a3744f043435e.zip |
fixes
Diffstat (limited to 'cpp/src/IcePatch/Server.cpp')
-rw-r--r-- | cpp/src/IcePatch/Server.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IcePatch/Server.cpp b/cpp/src/IcePatch/Server.cpp index 222fc7a80d6..6bc7de74198 100644 --- a/cpp/src/IcePatch/Server.cpp +++ b/cpp/src/IcePatch/Server.cpp @@ -185,7 +185,7 @@ IcePatch::Updater::run() assert(top); DirectoryDescPtr topDesc = DirectoryDescPtr::dynamicCast(top->describe()); assert(topDesc); - cleanup(topDesc->directory->getContents()); + cleanup(topDesc->dir->getContents()); } catch(const FileAccessException& ex) { @@ -247,14 +247,14 @@ IcePatch::Updater::cleanup(const FileDescSeq& fileDescSeq) // Force MD5 files to be created and orphaned files to be // removed. // - cleanup(directoryDesc->directory->getContents()); + cleanup(directoryDesc->dir->getContents()); // // Call describe(), because MD5 files in subdirectories // might have changed, resulting in a different summary // MD5 for this directory. // - directoryDesc->directory->describe(); + directoryDesc->dir->describe(); } else { @@ -264,7 +264,7 @@ IcePatch::Updater::cleanup(const FileDescSeq& fileDescSeq) // // Force BZ2 files to be created for all regular files. // - regularDesc->regular->getBZ2Size(); + regularDesc->reg->getBZ2Size(); } } } |