From 99e8b0978552849bb8fc90c42e3d57e86c0f45fb Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 30 Mar 2025 12:12:14 +0200 Subject: cgi.cc: rename 'g_file_list' to 'g_not_found' --- examples/cgi/cgi.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/cgi') 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 #include -const std::string g_file_list = R"( +const std::string g_not_found = R"( @@ -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(); -- cgit v1.2.3