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:50 +0100
committerMichael Biebl <biebl@debian.org>2025-02-12 13:46:50 +0100
commit8bdf070ff046f482f6eb5e2b15ebc216f5d1e3da (patch)
treef706478d189d54c6532e8863d4b0d5ff5575af60 /src/core/nm-auth-utils.c
parent818258cf34b83fbc754633295e1052d4752d7b15 (diff)
New upstream version 1.51.90 upstream/1.51.90
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),