]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
resolvectl: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 2 Nov 2025 08:00:21 +0000 (17:00 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 2 Nov 2025 08:00:23 +0000 (17:00 +0900)
Follow-up for 7517e41a49d9fa7d79567ec293fe0a353bd1441b.

src/resolve/resolvectl.c

index 4e63565afeb117a9c65da5d56e81610c11b0b64f..9974b3696c59971de893fc90c5d787e5c54eea58 100644 (file)
@@ -1053,7 +1053,7 @@ static int resolve_openpgp(sd_bus *bus, const char *address) {
                         arg_class ?: DNS_CLASS_IN,
                         arg_type ?: DNS_TYPE_OPENPGPKEY,
                         /* warn_missing= */ false);
-        if (!IN_SET(r, -ENXIO, -ESRCH)) /* Not NXDOMAIN or NODATA? Then fail immedately. */
+        if (!IN_SET(r, -ENXIO, -ESRCH)) /* Not NXDOMAIN or NODATA? Then fail immediately. */
                 return r;
 
         hashed = mfree(hashed);