Skip to content

Commit

Permalink
SERVER-15111 use boost 1.49 compatible copy_file
Browse files Browse the repository at this point in the history
  • Loading branch information
RedBeard0531 committed Sep 12, 2014
1 parent de87f1d commit 6e93b33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mongo/shell/shell_utils_extended.cpp
Expand Up @@ -225,7 +225,7 @@ namespace mongo {
const std::string source = it.next().str();
const std::string destination = it.next().str();

boost::filesystem::copy(source, destination);
boost::filesystem::copy_file(source, destination);

return undefinedReturn;
}
Expand Down

0 comments on commit 6e93b33

Please sign in to comment.