diff --git a/man/sd-event.xml b/man/sd-event.xml
index 2f17b89145..834eaeae85 100644
--- a/man/sd-event.xml
+++ b/man/sd-event.xml
@@ -91,7 +91,7 @@
project='man-pages'>timerfd_create2,
supporting the CLOCK_MONOTONIC,
CLOCK_REALTIME,
- CLOCK_BOOTIME clocks, as well as the
+ CLOCK_BOOTTIME clocks, as well as the
CLOCK_REALTIME_ALARM and
CLOCK_BOOTTIME_ALARM clocks that can resume
the system from suspend. When creating timer events a required
diff --git a/src/libsystemd/sd-event/sd-event.c b/src/libsystemd/sd-event/sd-event.c
index 9c624ab56f..aba458185b 100644
--- a/src/libsystemd/sd-event/sd-event.c
+++ b/src/libsystemd/sd-event/sd-event.c
@@ -62,7 +62,7 @@ static bool event_source_is_offline(sd_event_source *s) {
static const char* const event_source_type_table[_SOURCE_EVENT_SOURCE_TYPE_MAX] = {
[SOURCE_IO] = "io",
[SOURCE_TIME_REALTIME] = "realtime",
- [SOURCE_TIME_BOOTTIME] = "bootime",
+ [SOURCE_TIME_BOOTTIME] = "boottime",
[SOURCE_TIME_MONOTONIC] = "monotonic",
[SOURCE_TIME_REALTIME_ALARM] = "realtime-alarm",
[SOURCE_TIME_BOOTTIME_ALARM] = "boottime-alarm",
diff --git a/src/timesync/timesyncd-manager.c b/src/timesync/timesyncd-manager.c
index 569389b9d4..07f66623a7 100644
--- a/src/timesync/timesyncd-manager.c
+++ b/src/timesync/timesyncd-manager.c
@@ -622,7 +622,7 @@ static int manager_receive_response(sd_event_source *source, int fd, uint32_t re
"MESSAGE_ID=" SD_MESSAGE_TIME_SYNC_STR,
"MONOTONIC_USEC=" USEC_FMT, dts.monotonic,
"REALTIME_USEC=" USEC_FMT, dts.realtime,
- "BOOTIME_USEC=" USEC_FMT, dts.boottime);
+ "BOOTTIME_USEC=" USEC_FMT, dts.boottime);
}
r = manager_arm_timer(m, m->poll_interval_usec);