aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-05-14 14:52:07 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-05-14 14:52:07 +0300
commit4fc1bbfd5bf3196e1f603e443b51ddec911305b4 (patch)
tree9fe48abaf75080dad66485c0bcd46b9df26586f6
parenta13647d1d0418d612010e8ceb6fe560ffaffcf2d (diff)
downloadlibmicrohttpd-4fc1bbfd5bf3196e1f603e443b51ddec911305b4.tar.gz
libmicrohttpd-4fc1bbfd5bf3196e1f603e443b51ddec911305b4.zip
MHD_create_response_from_buffer_copy(): fixed doxy
-rw-r--r--src/include/microhttpd.h4
-rw-r--r--src/microhttpd/response.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 2f3a99a9..3e1dbc96 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -3696,8 +3696,8 @@ MHD_create_response_from_buffer_static (size_t size,
3696 3696
3697 3697
3698/** 3698/**
3699 * Create a response object with the content of provided statically allocated 3699 * Create a response object with the content of provided temporal buffer
3700 * buffer used as the response body. 3700 * used as the response body.
3701 * 3701 *
3702 * An internal copy of the buffer will be made automatically, so buffer have 3702 * An internal copy of the buffer will be made automatically, so buffer have
3703 * to be valid only during the call of this function (as a typical example: 3703 * to be valid only during the call of this function (as a typical example:
diff --git a/src/microhttpd/response.c b/src/microhttpd/response.c
index 65158819..463f01a7 100644
--- a/src/microhttpd/response.c
+++ b/src/microhttpd/response.c
@@ -1386,8 +1386,8 @@ MHD_create_response_from_buffer_static (size_t size,
1386 1386
1387 1387
1388/** 1388/**
1389 * Create a response object with the content of provided statically allocated 1389 * Create a response object with the content of provided temporal buffer
1390 * buffer used as the response body. 1390 * used as the response body.
1391 * 1391 *
1392 * An internal copy of the buffer will be made automatically, so buffer have 1392 * An internal copy of the buffer will be made automatically, so buffer have
1393 * to be valid only during the call of this function (as a typical example: 1393 * to be valid only during the call of this function (as a typical example: