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:
parent
530ee01c60
commit
dd0d821a33
@ -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.
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user