diff --git a/man/journal-remote.conf.xml b/man/journal-remote.conf.xml
index 34ef21a326d..67afd9dae5a 100644
--- a/man/journal-remote.conf.xml
+++ b/man/journal-remote.conf.xml
@@ -62,7 +62,7 @@
Compression=
Acceptable compression algorithms to be used by systemd-journal-upload. Compression algorithms are
- used for Accept-Encoding header contruction with priorities set according to an order in configuration.
+ used for Accept-Encoding header construction with priorities set according to an order in configuration.
This parameter takes space separated list of compression algorithms. Example:
Compression=zstd lz4
This option can be specified multiple times. If an empty string is assigned, then all the previous assignments are cleared.
diff --git a/src/journal-remote/journal-remote-main.c b/src/journal-remote/journal-remote-main.c
index 3c780b8f762..88ab62a7c7a 100644
--- a/src/journal-remote/journal-remote-main.c
+++ b/src/journal-remote/journal-remote-main.c
@@ -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