]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tree-wide: fix typo 19552/head
authorYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 9 May 2021 05:36:19 +0000 (14:36 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 9 May 2021 05:36:19 +0000 (14:36 +0900)
src/basic/process-util.c
src/libsystemd-network/sd-dhcp-server.c
src/shared/dissect-image.h

index 4cd8287bb004d25744064c25aa0a939a05d6981d..de28daf2b17eb3bc90d0895a8d5059f53ea04071 100644 (file)
@@ -190,7 +190,7 @@ int get_process_cmdline(pid_t pid, size_t max_columns, ProcessCmdlineFlags flags
         assert(line);
         assert(pid >= 0);
 
-        /* Retrieve adn format a commandline. See above for discussion of retrieval options.
+        /* Retrieve and format a commandline. See above for discussion of retrieval options.
          *
          * There are two main formatting modes:
          *
index 05c8a0eae4b1c79bdaaa9daa50ad636c5378783c..4713561904b8cc162786261f6ddecae5b4a7f74f 100644 (file)
@@ -1082,7 +1082,7 @@ static int server_receive_message(sd_event_source *s, int fd,
 
         size_t buflen = datagram_size;
         if (sd_dhcp_server_is_in_relay_mode(server))
-                /* Preallocate the additional size for DHCP Relay Agent Information Option if neeeded */
+                /* Preallocate the additional size for DHCP Relay Agent Information Option if needed */
                 buflen += relay_agent_information_length(server->agent_circuit_id, server->agent_remote_id) + 2;
 
         message = malloc(buflen);
index c961ee3e71ab7875c81e5919b09ab42e010b476f..1ce14e915e29495f452e0e9b9aa840b1a264d274 100644 (file)
@@ -112,7 +112,7 @@ typedef enum DissectImageFlags {
         DISSECT_IMAGE_READ_ONLY           = DISSECT_IMAGE_DEVICE_READ_ONLY |
                                             DISSECT_IMAGE_MOUNT_READ_ONLY,
         DISSECT_IMAGE_GROWFS              = 1 << 18, /* Grow file systems in partitions marked for that to the size of the partitions after mount */
-        DISSECT_IMAGE_MOUNT_IDMAPPED      = 1 << 19, /* Mount mounts with kernel 5.12-style userns ID mapping, if file sytem type doesn't support uid=/gid= */
+        DISSECT_IMAGE_MOUNT_IDMAPPED      = 1 << 19, /* Mount mounts with kernel 5.12-style userns ID mapping, if file system type doesn't support uid=/gid= */
 } DissectImageFlags;
 
 struct DissectedImage {