Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lavabit/magma.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjpadkins <jacobpadkins@gmail.com>2017-03-23 13:46:51 +0300
committerjpadkins <jacobpadkins@gmail.com>2017-03-23 13:46:51 +0300
commitc0675bbc5e8f1d455c1b5be795f7ec6d92c138ec (patch)
treed7a6f03657a45f471b72a2183e3807e28f3cae02 /check/magma/servers/http/http_check_network.c
parent3e545682caa748b2163ed7e57d492eab4e86f27f (diff)
Fixed POP LIST test and added IMAP fetch and search stubs
Diffstat (limited to 'check/magma/servers/http/http_check_network.c')
-rw-r--r--check/magma/servers/http/http_check_network.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/check/magma/servers/http/http_check_network.c b/check/magma/servers/http/http_check_network.c
index bb996427..496e86c4 100644
--- a/check/magma/servers/http/http_check_network.c
+++ b/check/magma/servers/http/http_check_network.c
@@ -39,7 +39,7 @@ uint32_t check_http_content_length_get(client_t *client, stringer_t *errmsg) {
while (st_cmp_ci_starts(&(client->line), NULLER("Content-Length:")) != 0) client_read_line(client);
if (!st_search_chr(&(client->line), ' ', &location)) {
- st_sprint(errmsg, "The Content-Length line is improperly formed.");
+ st_sprint(errmsg, "The Content-Length line was improperly formed.");
}
else if (pl_empty(cl_placer = pl_init(pl_data_get(client->line) + location, pl_length_get(client->line) - location))) {
st_sprint(errmsg, "Failed to initialize content length placer.");