]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
doc: replace wrong á preposition by à
authorJan Engelhardt <jengelh@inai.de>
Tue, 7 Mar 2023 12:04:21 +0000 (13:04 +0100)
committerJan Engelhardt <jengelh@inai.de>
Tue, 7 Mar 2023 12:06:43 +0000 (13:06 +0100)
NEWS
TODO
src/libsystemd/sd-bus/bus-creds.c

diff --git a/NEWS b/NEWS
index 4ef7fb2af31c205894f4b62600121a497001c411..a2a9aa351f21c58cfe05c7ed5e69c647a3c8cf91 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -698,7 +698,7 @@ CHANGES WITH 252 🎃:
 
         * ConditionKernelVersion= checks that use the '=' or '!=' operators
           will now do simple string comparisons (instead of version comparisons
-          Ã¡ la stverscmp()). Version comparisons are still done for the
+          Ã  la stverscmp()). Version comparisons are still done for the
           ordering operators '<', '>', '<=', '>='. Moreover, if no operator is
           specified, a shell-style glob match is now done. This creates a minor
           incompatibility compared to older systemd versions when the '*', '?',
diff --git a/TODO b/TODO
index 3727b3cab0777380a5881f790ae9893f55f94cba..541c02cb12f2355df92382e7360203a9f1a524d2 100644 (file)
--- a/TODO
+++ b/TODO
@@ -718,7 +718,7 @@ Features:
   what to do if support ended
 
 * pam_systemd: on interactive logins, maybe show SUPPORT_END information at
-  login time, Ã¡ la motd
+  login time, Ã  la motd
 
 * sd-boot: instead of unconditionally deriving the ESP to search boot loader
   spec entries in from the paths of sd-boot binary, let's optionally allow it
index 6e53e942dff232b95939da8462a47f9b96a41786..a06f6e659accdef8716af9324731553e72710c6d 100644 (file)
@@ -661,8 +661,8 @@ static int has_cap(sd_bus_creds *c, size_t offset, int capability) {
         if ((unsigned) capability > lc)
                 return 0;
 
-        /* If the last cap is 63, then there are 64 caps defined, and we need 2 entries Ã¡ 32bit hence. *
-         * If the last cap is 64, then there are 65 caps defined, and we need 3 entries Ã¡ 32bit hence. */
+        /* If the last cap is 63, then there are 64 caps defined, and we need 2 entries Ã  32bit hence. *
+         * If the last cap is 64, then there are 65 caps defined, and we need 3 entries Ã  32bit hence. */
         sz = DIV_ROUND_UP(lc+1, 32LU);
 
         return !!(c->capability[offset * sz + CAP_TO_INDEX((uint32_t) capability)] & CAP_TO_MASK_CORRECTED((uint32_t) capability));