diff options
author | Jacek Antonelli | 2008-08-15 23:45:50 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:50 -0500 |
commit | 2a4dea528f670b9bb1f77ef27a8a1dd16603d114 (patch) | |
tree | 95c68e362703c9099d571ecbdc6142b1cda1e005 /linden/indra/test/llblowfish_tut.cpp | |
parent | Second Life viewer sources 1.20.6 (diff) | |
download | meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.zip meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.gz meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.bz2 meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.xz |
Second Life viewer sources 1.20.7
Diffstat (limited to '')
-rw-r--r-- | linden/indra/test/llblowfish_tut.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/test/llblowfish_tut.cpp b/linden/indra/test/llblowfish_tut.cpp index e1fa2fd..78253cd 100644 --- a/linden/indra/test/llblowfish_tut.cpp +++ b/linden/indra/test/llblowfish_tut.cpp | |||
@@ -60,13 +60,13 @@ namespace tut | |||
60 | bool matchFile(const char* filename, | 60 | bool matchFile(const char* filename, |
61 | const std::string& data) | 61 | const std::string& data) |
62 | { | 62 | { |
63 | FILE* fp = fopen(filename, "rb"); | 63 | LLFILE* fp = LLFile::fopen(filename, "rb"); |
64 | if (!fp) | 64 | if (!fp) |
65 | { | 65 | { |
66 | // sometimes test is run inside the indra directory | 66 | // sometimes test is run inside the indra directory |
67 | std::string path = "test/"; | 67 | std::string path = "test/"; |
68 | path += filename; | 68 | path += filename; |
69 | fp = fopen(path.c_str(), "rb"); | 69 | fp = LLFile::fopen(path.c_str(), "rb"); |
70 | } | 70 | } |
71 | if (!fp) | 71 | if (!fp) |
72 | { | 72 | { |