]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
treewide: fix typos (#6566)
authorTorstein Husebø <torstein@huseboe.net>
Tue, 8 Aug 2017 14:05:29 +0000 (16:05 +0200)
committerFelipe Sateler <fsateler@users.noreply.github.com>
Tue, 8 Aug 2017 14:05:29 +0000 (10:05 -0400)
src/basic/random-util.c
src/shared/bus-util.c
src/timesync/timesyncd-manager.c

index 810eeab4d551b395fe1833aa804ad23121737762..42f484d68794201ef97b13bb905db40f55c7e00a 100644 (file)
@@ -64,7 +64,7 @@ int acquire_random_bytes(void *p, size_t n, bool high_quality_required) {
                         if ((size_t) r == n)
                                 return 0;
                         if (!high_quality_required) {
-                                /* Fill in the remaing bytes using pseudorandom values */
+                                /* Fill in the remaining bytes using pseudorandom values */
                                 pseudorandom_bytes((uint8_t*) p + r, n - r);
                                 return 0;
                         }
index 1c6378f31a52c251e08239cda65a8384dac1b131..a7fafb9be57fcb98c89a55902f504b3e54232a71 100644 (file)
@@ -842,7 +842,7 @@ int bus_print_property(const char *name, sd_bus_message *property, bool value, b
                                 if (first && !value)
                                         printf("%s=", name);
 
-                                /* This property has multiple space-seperated values, so
+                                /* This property has multiple space-separated values, so
                                  * neither spaces not newlines can be allowed in a value. */
                                 good = str[strcspn(str, " \n")] == '\0';
 
index e0c92946d14980159128d5abf9c309cb55e4d8cd..4458f98ebf2852bde21783184ba9a94d7b0c7c38 100644 (file)
@@ -1093,7 +1093,7 @@ static int manager_network_monitor_listen(Manager *m) {
 
         r = sd_network_monitor_new(&m->network_monitor, NULL);
         if (r == -ENOENT) {
-                log_info("Systemd does not appear to be running, not listening for systmed-networkd events.");
+                log_info("Systemd does not appear to be running, not listening for systemd-networkd events.");
                 return 0;
         }
         if (r < 0)