libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 2e0b075a44e584ddc9b77712c12b7ee61bd9649b
parent 234f74cabeca7130af481e43a6b3348f9c716a50
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Mon, 19 Feb 2024 21:54:46 +0500

Removed strings with filenames from binary when built without messages

Diffstat:
Msrc/microhttpd/mhd_panic.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/microhttpd/mhd_panic.h b/src/microhttpd/mhd_panic.h @@ -75,7 +75,7 @@ extern void *mhd_panic_cls; * * @param msg error message (const char *) */ -#define MHD_PANIC(msg) do { mhd_panic (mhd_panic_cls, __FILE__, __LINE__, NULL); \ +#define MHD_PANIC(msg) do { mhd_panic (mhd_panic_cls, NULL, __LINE__, NULL); \ BUILTIN_NOT_REACHED; } while (0) #endif