From 5267241b329ec75451965f714682fc11f5324543 Mon Sep 17 00:00:00 2001 From: Christian Mauderer Date: Thu, 28 Jun 2012 15:03:39 +0200 Subject: mghttpd: Clarify comment --- cpukit/mghttpd/mongoose.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cpukit/mghttpd') diff --git a/cpukit/mghttpd/mongoose.h b/cpukit/mghttpd/mongoose.h index 61a560a553..c130fe7b84 100644 --- a/cpukit/mghttpd/mongoose.h +++ b/cpukit/mghttpd/mongoose.h @@ -157,10 +157,10 @@ int mg_write(struct mg_connection *, const void *buf, size_t len); // Send data to the browser using printf() semantics. // -// Works exactly like mg_write(), but allows to do message formatting. -// Note that mg_printf() uses internal buffer of size IO_BUF_SIZE -// (8 Kb by default) as temporary message storage for formatting. Do not -// print data that is bigger than that, otherwise it will be truncated. +// Works exactly like mg_write(), but allows to do message formatting. Note +// that mg_printf() uses internal buffer of size BUFSIZ defined in +// (8 KiB on most Linux systems) as temporary message storage for formatting. +// Do not print data that is bigger than that, otherwise it will be truncated. int mg_printf(struct mg_connection *, const char *fmt, ...) #ifdef __GNUC__ __attribute__((format(printf, 2, 3))) -- cgit v1.2.3