aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/mhd_str.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/mhd_str.h')
-rw-r--r--src/microhttpd/mhd_str.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/mhd_str.h b/src/microhttpd/mhd_str.h
index 17921aa1..3d56ba35 100644
--- a/src/microhttpd/mhd_str.h
+++ b/src/microhttpd/mhd_str.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2015, 2016 Karlson2k (Evgeny Grin) 3 Copyright (C) 2015-2022 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
@@ -596,7 +596,7 @@ MHD_str_quote (const char *unquoted,
596 * @param bin_size the size of the @a bin buffer in bytes, if the size is 596 * @param bin_size the size of the @a bin buffer in bytes, if the size is
597 * at least @a base64_len / 4 * 3 then result will always 597 * at least @a base64_len / 4 * 3 then result will always
598 * fit, regardless of the amount of the padding characters 598 * fit, regardless of the amount of the padding characters
599 * @return 0 if @base64_len is zero, or input string has wrong data (not 599 * @return 0 if @a base64_len is zero, or input string has wrong data (not
600 * valid Base64 sequence), or @a bin_size is too small; 600 * valid Base64 sequence), or @a bin_size is too small;
601 * non-zero number of bytes written to the @a bin, the number must be 601 * non-zero number of bytes written to the @a bin, the number must be
602 * (base64_len / 4 * 3 - 2), (base64_len / 4 * 3 - 1) or 602 * (base64_len / 4 * 3 - 2), (base64_len / 4 * 3 - 1) or