Module Name: src Committed By: leot Date: Tue Aug 25 20:02:33 UTC 2020
Modified Files: src/libexec/httpd: printenv.lua Log Message: Fix a typo in a comment To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/libexec/httpd/printenv.lua Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/libexec/httpd/printenv.lua diff -u src/libexec/httpd/printenv.lua:1.3 src/libexec/httpd/printenv.lua:1.4 --- src/libexec/httpd/printenv.lua:1.3 Mon Dec 7 03:11:48 2015 +++ src/libexec/httpd/printenv.lua Tue Aug 25 20:02:33 2020 @@ -1,10 +1,10 @@ --- $NetBSD: printenv.lua,v 1.3 2015/12/07 03:11:48 kamil Exp $ +-- $NetBSD: printenv.lua,v 1.4 2020/08/25 20:02:33 leot Exp $ -- this small Lua script demonstrates the use of Lua in (bozo)httpd -- it will simply output the "environment" -- Keep in mind that bozohttpd forks for each request when started in --- daemon mode, you can set global veriables here, but they will have +-- daemon mode, you can set global variables here, but they will have -- the same value on each invocation. You can not keep state between -- two calls.