about summary refs log tree commit diff
path: root/src/core/nm-auth-utils.c
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2025-02-12 13:46:55 +0100
committerMichael Biebl <biebl@debian.org>2025-02-12 13:46:55 +0100
commitec170f43021cdc93a65151f4646875cd3aa42a13 (patch)
treeedd6f226af21951b7b4ae1954308594413610513 /src/core/nm-auth-utils.c
parentd5d9f6796c16f29776c619f464811917e46521f4 (diff)
parent8bdf070ff046f482f6eb5e2b15ebc216f5d1e3da (diff)
Update upstream source from tag 'upstream/1.51.90'
Update to upstream version '1.51.90'
with Debian dir 5ed61494ac9853892cd39fb1e4debd23f234a5b9
Diffstat (limited to 'src/core/nm-auth-utils.c')
-rw-r--r--src/core/nm-auth-utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/nm-auth-utils.c b/src/core/nm-auth-utils.c
index aa2547b3..389004aa 100644
--- a/src/core/nm-auth-utils.c
+++ b/src/core/nm-auth-utils.c
@@ -293,7 +293,7 @@ nm_auth_chain_set_data_unsafe(NMAuthChain   *self,
     }
 
     chain_data  = &self->data_arr[self->data_len++];
-    *chain_data = (ChainData){
+    *chain_data = (ChainData) {
         .tag     = tag,
         .data    = data,
         .destroy = data_destroy,
@@ -445,7 +445,7 @@ nm_auth_chain_add_call_unsafe(NMAuthChain *self, const char *permission, gboolea
     }
 
     call  = g_slice_new(AuthCall);
-    *call = (AuthCall){
+    *call = (AuthCall) {
         .chain   = self,
         .call_id = NULL,
         .result  = NM_AUTH_CALL_RESULT_UNKNOWN,
@@ -520,7 +520,7 @@ nm_auth_chain_new_subject(NMAuthSubject         *subject,
     nm_assert(done_func);
 
     self  = g_slice_new(NMAuthChain);
-    *self = (NMAuthChain){
+    *self = (NMAuthChain) {
         .done_func          = done_func,
         .user_data          = user_data,
         .context            = nm_g_object_ref(context),