Fix server_example.md

PUBLISHED_FROM=dfbfeaae983daa0412964ac0402759f632bf7aeb
This commit is contained in:
Yiming Sun 2017-02-28 12:52:45 +02:00 committed by Cesanta Bot
parent 874b5bfdbf
commit f7c0a2ee15

View File

@ -30,8 +30,8 @@ static void ev_handler(struct mg_connection *c, int ev, void *p) {
// We have received an HTTP request. Parsed request is contained in `hm`.
// Send HTTP reply to the client which shows full original request.
mg_send_head(c, 200, hm.message.len, "Content-Type: text/plain");
mg_printf(c, "%.*s", hm.message.len, hm.message.p);
mg_send_head(c, 200, hm->message.len, "Content-Type: text/plain");
mg_printf(c, "%.*s", (int)hm->message.len, hm->message.p);
}
}