Skip to content

Commit ed88a90

Browse files
torstehufsateler
authored andcommitted
treewide: fix typos (systemd#6566)
1 parent 4f6631c commit ed88a90

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/basic/random-util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ int acquire_random_bytes(void *p, size_t n, bool high_quality_required) {
6464
if ((size_t) r == n)
6565
return 0;
6666
if (!high_quality_required) {
67-
/* Fill in the remaing bytes using pseudorandom values */
67+
/* Fill in the remaining bytes using pseudorandom values */
6868
pseudorandom_bytes((uint8_t*) p + r, n - r);
6969
return 0;
7070
}

src/shared/bus-util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -842,7 +842,7 @@ int bus_print_property(const char *name, sd_bus_message *property, bool value, b
842842
if (first && !value)
843843
printf("%s=", name);
844844

845-
/* This property has multiple space-seperated values, so
845+
/* This property has multiple space-separated values, so
846846
* neither spaces not newlines can be allowed in a value. */
847847
good = str[strcspn(str, " \n")] == '\0';
848848

src/timesync/timesyncd-manager.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,7 @@ static int manager_network_monitor_listen(Manager *m) {
10931093

10941094
r = sd_network_monitor_new(&m->network_monitor, NULL);
10951095
if (r == -ENOENT) {
1096-
log_info("Systemd does not appear to be running, not listening for systmed-networkd events.");
1096+
log_info("Systemd does not appear to be running, not listening for systemd-networkd events.");
10971097
return 0;
10981098
}
10991099
if (r < 0)

0 commit comments

Comments
 (0)