]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
process-util: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 25 Nov 2025 13:49:44 +0000 (22:49 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 25 Nov 2025 13:52:10 +0000 (22:52 +0900)
Follow-up for a08f2ea02dc4fcbd7f2f73a5a24e0af32b34fe55.

src/basic/process-util.c

index 592e4c329c30e0181770548b375a089af3b7448c..98919d232ae83fd79ffe6ed53b190148bff3a9db 100644 (file)
@@ -1698,7 +1698,7 @@ int pidref_safe_fork_full(
 
         /* let's disable dlopen() in the child, as a paranoia safety precaution: children should not live for
          * long and only do minimal work before exiting or exec()ing. Doing dlopen() is not either. If people
-         * want dlopen() they should do it before forking. This is a safety precuation in particular for
+         * want dlopen() they should do it before forking. This is a safety precaution in particular for
          * cases where the child does namespace shenanigans: we should never end up loading a module from a
          * foreign environment. Note that this has no effect on NSS! (i.e. it only has effect on uses of our
          * dlopen_safe(), which we use comprehensively in our codebase, but glibc NSS doesn't bother, of