]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
shared: fix typo in read_etc_hostname definition
authorJelle van der Waa <jvanderwaa@redhat.com>
Mon, 5 May 2025 17:32:52 +0000 (19:32 +0200)
committerJelle van der Waa <jvanderwaa@redhat.com>
Mon, 5 May 2025 17:32:52 +0000 (19:32 +0200)
src/shared/bus-polkit.c
src/shared/hostname-setup.h

index 37a25db81a713167e94cef0cc2136f76b0b9697c..0c61464ef0d6f261deb90c5155262ed980b8e744 100644 (file)
@@ -128,7 +128,7 @@ int bus_test_polkit(
         _cleanup_(sd_bus_message_unrefp) sd_bus_message *request = NULL, *reply = NULL;
         int authorized = false, challenge = false;
 
-        r = bus_message_new_polkit_auth_call_for_bus(call, action, details, /* interactive = */ false, &request);
+        r = bus_message_new_polkit_auth_call_for_bus(call, action, details, /* flags = */ false, &request);
         if (r < 0)
                 return r;
 
index e3601b85907744282e6f79dae250ebf441620ed1..526ea0b7ebde71cb21209207f3195fae7917344a 100644 (file)
@@ -22,7 +22,7 @@ int sethostname_idempotent(const char *s);
 int shorten_overlong(const char *s, char **ret);
 
 int read_etc_hostname_stream(FILE *f, bool substitute_wildcards, char **ret);
-int read_etc_hostname(const char *path, bool substitue_wildcards, char **ret);
+int read_etc_hostname(const char *path, bool substitute_wildcards, char **ret);
 
 void hostname_update_source_hint(const char *hostname, HostnameSource source);
 int hostname_setup(bool really);