diff options
| author | 2022-10-12 10:58:40 +0100 | |
|---|---|---|
| committer | 2022-10-12 10:58:40 +0100 | |
| commit | c747d89f0e1578f63b98186ebce28b3f60454cc1 (patch) | |
| tree | 2af3cfd2ff35eef75dc6c39e7a5a50efdccf8c2c /src/modules/m_showfile.cpp | |
| parent | Switch the ssl_mbedtls module to use ifstream instead of FileReader. (diff) | |
Avoid file_cache in opermotd and showfile.
Diffstat (limited to 'src/modules/m_showfile.cpp')
| -rw-r--r-- | src/modules/m_showfile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_showfile.cpp b/src/modules/m_showfile.cpp index 821c7eb5e..456dfe50c 100644 --- a/src/modules/m_showfile.cpp +++ b/src/modules/m_showfile.cpp @@ -45,7 +45,7 @@ class CommandShowFile final unsigned int intronumeric; unsigned int textnumeric; unsigned int endnumeric; - file_cache contents; + std::vector<std::string> contents; Method method; public: |
