summaryrefslogtreecommitdiffhomepage
path: root/examples/cgi
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cgi')
-rw-r--r--examples/cgi/cgi.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/cgi/cgi.cc b/examples/cgi/cgi.cc
index 7897122..4d9b0d8 100644
--- a/examples/cgi/cgi.cc
+++ b/examples/cgi/cgi.cc
@@ -10,7 +10,7 @@
#include <string>
#include <filesystem>
-const std::string g_file_list = R"(
+const std::string g_not_found = R"(
<!DOCTYPE html>
<html>
<head>
@@ -82,7 +82,7 @@ int main(int argc, char** argv)
if (fp.good())
ss_file << fp.rdbuf();
else
- ss_file << g_file_list;
+ ss_file << g_not_found;
fp.close();