diff options
author | Aleksey Veresov <aleksey@veresov.pro> | 2020-07-18 08:29:10 +0300 |
---|---|---|
committer | Aleksey Veresov <aleksey@veresov.pro> | 2020-07-18 08:29:10 +0300 |
commit | 43968691c2a7f1f95cf7476fc8ab3c0bba8bab54 (patch) | |
tree | ddd2d851508a2b93ce95d3d65b272620bc5322f6 /examples | |
parent | 36dda991898ce621a0b0f7103f763690e73fa0ff (diff) | |
download | magi-43968691c2a7f1f95cf7476fc8ab3c0bba8bab54.tar magi-43968691c2a7f1f95cf7476fc8ab3c0bba8bab54.tar.xz magi-43968691c2a7f1f95cf7476fc8ab3c0bba8bab54.zip |
Removed unnecessary field meta from request.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/echo.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/echo.c b/examples/echo.c index c93a897..ae95aa1 100644 --- a/examples/echo.c +++ b/examples/echo.c @@ -83,9 +83,6 @@ void response(struct magi_request *r) printf("<h2>Cookies:</h2>"); list_cookies(r); - printf("<h2>Parameters:</h2>"); - list_params(r->meta); - printf("<h2>URL Parameters:</h2>"); list_params(r->head); |