1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-22 06:50:18 +03:00

journal-remote: fix typo

Follow-ups for cfaf78001c3451d549bcb1ee4adca3e85b934e56.
This commit is contained in:
Yu Watanabe 2025-02-14 13:22:28 +09:00
parent 530ee01c60
commit dd0d821a33
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@
<term><varname>Compression=</varname></term>
<listitem><para>Acceptable compression algorithms to be used by <command>systemd-journal-upload</command>. Compression algorithms are
used for <literal>Accept-Encoding</literal> header contruction with priorities set according to an order in configuration.
used for <literal>Accept-Encoding</literal> header construction with priorities set according to an order in configuration.
This parameter takes space separated list of compression algorithms. Example:
<programlisting>Compression=zstd lz4</programlisting>
This option can be specified multiple times. If an empty string is assigned, then all the previous assignments are cleared.

View File

@ -242,7 +242,7 @@ static int process_http_upload(
r = decompress_blob(source->compression, upload_data, *upload_data_size, (void **) &buf, &buf_size, 0);
if (r < 0)
return mhd_respondf(connection, r, MHD_HTTP_BAD_REQUEST, "Decompression of received blob falied.");
return mhd_respondf(connection, r, MHD_HTTP_BAD_REQUEST, "Decompression of received blob failed.");
r = journal_importer_push_data(&source->importer, buf, buf_size);
} else