summaryrefslogtreecommitdiff
path: root/net-im/dino/files/dino-0.4.3-c99.patch
blob: d21ff5e4adec4cb5dc3540c57ea6de0022a49ad7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
https://bugs.gentoo.org/926073
https://github.com/dino/dino/commit/0c45387bf903e5b0d02502d27642dd2a78aa6539

From 0c45387bf903e5b0d02502d27642dd2a78aa6539 Mon Sep 17 00:00:00 2001
From: fiaxh <git@lightrise.org>
Date: Sat, 7 Oct 2023 13:56:38 +0200
Subject: [PATCH] Fix implicit-function-declaration compiler warnings

--- a/xmpp-vala/src/module/xep/0384_omemo/omemo_encryptor.vala
+++ b/xmpp-vala/src/module/xep/0384_omemo/omemo_encryptor.vala
@@ -72,27 +72,27 @@ namespace Xmpp.Xep.Omemo {
     }
 
     public class EncryptionResult {
-        public int lost { get; internal set; }
-        public int success { get; internal set; }
-        public int unknown { get; internal set; }
-        public int failure { get; internal set; }
+        public int lost { get; set; }
+        public int success { get; set; }
+        public int unknown { get; set; }
+        public int failure { get; set; }
     }
 
     public class EncryptState {
-        public bool encrypted { get; internal set; }
-        public int other_devices { get; internal set; }
-        public int other_success { get; internal set; }
-        public int other_lost { get; internal set; }
-        public int other_unknown { get; internal set; }
-        public int other_failure { get; internal set; }
-        public int other_waiting_lists { get; internal set; }
-
-        public int own_devices { get; internal set; }
-        public int own_success { get; internal set; }
-        public int own_lost { get; internal set; }
-        public int own_unknown { get; internal set; }
-        public int own_failure { get; internal set; }
-        public bool own_list { get; internal set; }
+        public bool encrypted { get; set; }
+        public int other_devices { get; set; }
+        public int other_success { get; set; }
+        public int other_lost { get; set; }
+        public int other_unknown { get; set; }
+        public int other_failure { get; set; }
+        public int other_waiting_lists { get; set; }
+
+        public int own_devices { get; set; }
+        public int own_success { get; set; }
+        public int own_lost { get; set; }
+        public int own_unknown { get; set; }
+        public int own_failure { get; set; }
+        public bool own_list { get; set; }
 
         public void add_result(EncryptionResult enc_res, bool own) {
             if (own) {