]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
Replace gendered pronouns with gender neutral ones. (#16844)
authorPhoenixDiscord <37777903+PhoenixDiscord@users.noreply.github.com>
Thu, 27 Aug 2020 02:52:48 +0000 (04:52 +0200)
committerGitHub <noreply@github.com>
Thu, 27 Aug 2020 02:52:48 +0000 (11:52 +0900)
docs/JOURNAL_FILE_FORMAT.md
src/basic/path-lookup.h
src/basic/procfs-util.c
src/core/execute.c
src/login/loginctl.c
src/machine/machinectl.c
src/timedate/timedatectl.c
src/udev/udev-builtin-net_id.c

index 523ed621ff85944a8ba84d9c7ac7eb45e3d182c6..e87a7580260947dae607853fceb4bb5bf59e8d2b 100644 (file)
@@ -196,8 +196,8 @@ The currently used part of the file is the **header_size** plus the
 **arena_size** field of the header. If a writer needs to write to a file where
 the actual file size on disk is smaller than the reported value it shall
 immediately rotate the file and start a new one. If a writer is asked to write
-to a file with a header that is shorter than his own definition of the struct
-Header, he shall immediately rotate the file and start a new one.
+to a file with a header that is shorter than its own definition of the struct
+Header, it shall immediately rotate the file and start a new one.
 
 The **n_objects** field contains a counter for objects currently available in
 this file. As objects are appended to the end of the file this counter is
index ae37f9feb9dbb587a66a4509b0a516c25080adfc..ee3d8102e0066ef16f6b40a6d64cfbe4d1aec407 100644 (file)
@@ -21,7 +21,7 @@ struct LookupPaths {
         char **search_path;
 
         /* Where we shall create or remove our installation symlinks, aka "configuration", and where the user/admin
-         * shall place his own unit files. */
+         * shall place their own unit files. */
         char *persistent_config;
         char *runtime_config;
 
index 7aaf95bfced24f93a8caea16302da2332a85ed5c..38f9fa1212b1da8f0440de04320170f773a2a537 100644 (file)
@@ -65,7 +65,7 @@ int procfs_tasks_set_limit(uint64_t limit) {
 
         if (limit == 0) /* This makes no sense, we are userspace and hence count as tasks too, and we want to live,
                          * hence the limit conceptually has to be above 0. Also, most likely if anyone asks for a zero
-                         * limit he/she probably means "no limit", hence let's better refuse this to avoid
+                         * limit they probably mean "no limit", hence let's better refuse this to avoid
                          * confusion. */
                 return -EINVAL;
 
index aede50c5fe13d02a3e9b6f81f61655cce5c914ac..444c3985f1bad3ff85f984f5bebce6b78930d350 100644 (file)
@@ -412,7 +412,7 @@ static int acquire_path(const char *path, int flags, mode_t mode) {
 
         if (connect(fd, &sa.sa, sa_len) < 0)
                 return errno == EINVAL ? -ENXIO : -errno; /* Propagate initial error if we get EINVAL, i.e. we have
-                                                           * indication that his wasn't an AF_UNIX socket after all */
+                                                           * indication that this wasn't an AF_UNIX socket after all */
 
         if ((flags & O_ACCMODE) == O_RDONLY)
                 r = shutdown(fd, SHUT_WR);
index 4297a510082a35a17e3fbca2f2defb86a6c97e25..044b41b82d576a0cfcd6a762fccfd188efda1a5b 100644 (file)
@@ -1337,7 +1337,7 @@ static int parse_argv(int argc, char *argv[]) {
                                 return log_oom();
 
                         /* If the user asked for a particular
-                         * property, show it to him, even if it is
+                         * property, show it to them, even if it is
                          * empty. */
                         arg_all = true;
                         break;
index 841eeae8827b476cd564b71f747fe252efa3919e..9cdce716521803075a6441c08a512169a3dea9a9 100644 (file)
@@ -2672,7 +2672,7 @@ static int parse_argv(int argc, char *argv[]) {
                                 return log_oom();
 
                         /* If the user asked for a particular
-                         * property, show it to him, even if it is
+                         * property, show it to them, even if it is
                          * empty. */
                         arg_all = true;
                         break;
index 7afc37d9e338c81a87e5c817f095f7374ba7542f..0131bbed8cff0acb98e3f005b9532349f00b088c 100644 (file)
@@ -1005,7 +1005,7 @@ static int parse_argv(int argc, char *argv[]) {
                                 return log_oom();
 
                         /* If the user asked for a particular
-                         * property, show it to him, even if it is
+                         * property, show it to them, even if it is
                          * empty. */
                         arg_all = true;
                         break;
index b3c0ec827b655334572e1ac43780ba0d699e9fe1..f070c1dc9cecfa206a81435e1eabf229352067d6 100644 (file)
@@ -186,7 +186,7 @@ static int dev_pci_onboard(sd_device *dev, struct netnames *names) {
         /* Some BIOSes report rubbish indexes that are excessively high (2^24-1 is an index VMware likes to
          * report for example). Let's define a cut-off where we don't consider the index reliable anymore. We
          * pick some arbitrary cut-off, which is somewhere beyond the realistic number of physical network
-         * interface a system might have. Ideally the kernel would already filter his crap for us, but it
+         * interface a system might have. Ideally the kernel would already filter this crap for us, but it
          * doesn't currently. */
         if (idx > ONBOARD_INDEX_MAX)
                 return -ENOENT;