lists.osmocom.org
Sign In
Sign Up
Sign In
Sign Up
Manage this list
×
Keyboard Shortcuts
Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
2025
June
May
April
March
February
January
2024
December
November
October
September
August
July
June
May
April
March
February
January
2023
December
November
October
September
August
July
June
May
April
March
February
January
2022
December
November
October
September
August
July
June
May
April
March
February
January
List overview
Download
gerrit-log
September 2022
----- 2025 -----
June 2025
May 2025
April 2025
March 2025
February 2025
January 2025
----- 2024 -----
December 2024
November 2024
October 2024
September 2024
August 2024
July 2024
June 2024
May 2024
April 2024
March 2024
February 2024
January 2024
----- 2023 -----
December 2023
November 2023
October 2023
September 2023
August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
----- 2022 -----
December 2022
November 2022
October 2022
September 2022
August 2022
July 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
gerrit-log@lists.osmocom.org
2 participants
1860 discussions
Start a n
N
ew thread
Change in osmo-hnbgw[master]: cosmetic: Fix typos
by laforge
laforge has submitted this change. (
https://gerrit.osmocom.org/c/osmo-hnbgw/+/29319
) Change subject: cosmetic: Fix typos ...................................................................... cosmetic: Fix typos it's "successful", not" "successfull". Change-Id: Ic421ed6835a9ffca6af34779f0ea648bb12e2fe1 --- M src/osmo-hnbgw/hnbgw_hnbap.c 1 file changed, 2 insertions(+), 2 deletions(-) Approvals: Jenkins Builder: Verified laforge: Looks good to me, approved diff --git a/src/osmo-hnbgw/hnbgw_hnbap.c b/src/osmo-hnbgw/hnbgw_hnbap.c index 2a35491..98cec76 100644 --- a/src/osmo-hnbgw/hnbgw_hnbap.c +++ b/src/osmo-hnbgw/hnbgw_hnbap.c @@ -69,7 +69,7 @@ return rc; } - /* generate a successfull outcome PDU */ + /* generate a unsuccessful outcome PDU */ msg = hnbap_generate_unsuccessful_outcome(HNBAP_ProcedureCode_id_HNBRegister, HNBAP_Criticality_reject, &asn_DEF_HNBAP_HNBRegisterReject, @@ -111,7 +111,7 @@ return rc; } - /* generate a successfull outcome PDU */ + /* generate a successful outcome PDU */ msg = hnbap_generate_successful_outcome(HNBAP_ProcedureCode_id_HNBRegister, HNBAP_Criticality_reject, &asn_DEF_HNBAP_HNBRegisterAccept, -- To view, visit
https://gerrit.osmocom.org/c/osmo-hnbgw/+/29319
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-hnbgw Gerrit-Branch: master Gerrit-Change-Id: Ic421ed6835a9ffca6af34779f0ea648bb12e2fe1 Gerrit-Change-Number: 29319 Gerrit-PatchSet: 1 Gerrit-Owner: laforge <laforge(a)osmocom.org> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: laforge <laforge(a)osmocom.org> Gerrit-MessageType: merged
2 years, 9 months
1
0
0
0
Change in osmo-hnbgw[master]: cosmetic: Fix typos
by laforge
laforge has posted comments on this change. (
https://gerrit.osmocom.org/c/osmo-hnbgw/+/29319
) Change subject: cosmetic: Fix typos ...................................................................... Patch Set 1: Code-Review+2 -- To view, visit
https://gerrit.osmocom.org/c/osmo-hnbgw/+/29319
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-hnbgw Gerrit-Branch: master Gerrit-Change-Id: Ic421ed6835a9ffca6af34779f0ea648bb12e2fe1 Gerrit-Change-Number: 29319 Gerrit-PatchSet: 1 Gerrit-Owner: laforge <laforge(a)osmocom.org> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: laforge <laforge(a)osmocom.org> Gerrit-Comment-Date: Mon, 12 Sep 2022 07:10:51 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment
2 years, 9 months
1
0
0
0
Change in osmo-mgw[master]: Make osmo_mgcpc_ep_fsm_pre_term() static
by laforge
laforge has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-mgw/+/29320
) Change subject: Make osmo_mgcpc_ep_fsm_pre_term() static ...................................................................... Make osmo_mgcpc_ep_fsm_pre_term() static This is a call-back for FSM pre-termination and it should not be publicly exported. Change-Id: Iaa44906baa201571f6bc3192bd3caacb272fec0b --- M src/libosmo-mgcp-client/mgcp_client_endpoint_fsm.c 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.osmocom.org:29418/osmo-mgw refs/changes/20/29320/1 diff --git a/src/libosmo-mgcp-client/mgcp_client_endpoint_fsm.c b/src/libosmo-mgcp-client/mgcp_client_endpoint_fsm.c index ea4c378..b8f09d5 100644 --- a/src/libosmo-mgcp-client/mgcp_client_endpoint_fsm.c +++ b/src/libosmo-mgcp-client/mgcp_client_endpoint_fsm.c @@ -997,7 +997,7 @@ return 0; } -void osmo_mgcpc_ep_fsm_pre_term(struct osmo_fsm_inst *fi, enum osmo_fsm_term_cause cause) +static void osmo_mgcpc_ep_fsm_pre_term(struct osmo_fsm_inst *fi, enum osmo_fsm_term_cause cause) { int i; struct osmo_mgcpc_ep *ep = osmo_mgcpc_ep_fi_mgwep(fi); -- To view, visit
https://gerrit.osmocom.org/c/osmo-mgw/+/29320
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-mgw Gerrit-Branch: master Gerrit-Change-Id: Iaa44906baa201571f6bc3192bd3caacb272fec0b Gerrit-Change-Number: 29320 Gerrit-PatchSet: 1 Gerrit-Owner: laforge <laforge(a)osmocom.org> Gerrit-MessageType: newchange
2 years, 9 months
1
0
0
0
Change in osmo-hnbgw[master]: cosmetic: Fix typos
by laforge
laforge has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-hnbgw/+/29319
) Change subject: cosmetic: Fix typos ...................................................................... cosmetic: Fix typos it's "successful", not" "successfull". Change-Id: Ic421ed6835a9ffca6af34779f0ea648bb12e2fe1 --- M src/osmo-hnbgw/hnbgw_hnbap.c 1 file changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-hnbgw refs/changes/19/29319/1 diff --git a/src/osmo-hnbgw/hnbgw_hnbap.c b/src/osmo-hnbgw/hnbgw_hnbap.c index 2a35491..98cec76 100644 --- a/src/osmo-hnbgw/hnbgw_hnbap.c +++ b/src/osmo-hnbgw/hnbgw_hnbap.c @@ -69,7 +69,7 @@ return rc; } - /* generate a successfull outcome PDU */ + /* generate a unsuccessful outcome PDU */ msg = hnbap_generate_unsuccessful_outcome(HNBAP_ProcedureCode_id_HNBRegister, HNBAP_Criticality_reject, &asn_DEF_HNBAP_HNBRegisterReject, @@ -111,7 +111,7 @@ return rc; } - /* generate a successfull outcome PDU */ + /* generate a successful outcome PDU */ msg = hnbap_generate_successful_outcome(HNBAP_ProcedureCode_id_HNBRegister, HNBAP_Criticality_reject, &asn_DEF_HNBAP_HNBRegisterAccept, -- To view, visit
https://gerrit.osmocom.org/c/osmo-hnbgw/+/29319
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-hnbgw Gerrit-Branch: master Gerrit-Change-Id: Ic421ed6835a9ffca6af34779f0ea648bb12e2fe1 Gerrit-Change-Number: 29319 Gerrit-PatchSet: 1 Gerrit-Owner: laforge <laforge(a)osmocom.org> Gerrit-MessageType: newchange
2 years, 9 months
1
0
0
0
Build failure of network:osmocom:nightly/osmo-gsm-manuals in Debian_Testing/x86_64
by OBS Notification
Visit
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/o…
Package network:osmocom:nightly/osmo-gsm-manuals failed to build in Debian_Testing/x86_64 Check out the package for editing: osc checkout network:osmocom:nightly osmo-gsm-manuals Last lines of build log: /var/cache/obs/worker/root_4/.pkgs/adduser.deb: Input/output error (worker was cloud104:4) -- Configure notifications at
https://build.opensuse.org/my/subscriptions
openSUSE Build Service (
https://build.opensuse.org/
)
2 years, 9 months
1
0
0
0
Build failure of network:osmocom:nightly/osmo-sysmon in Debian_Unstable/x86_64
by OBS Notification
Visit
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/o…
Package network:osmocom:nightly/osmo-sysmon failed to build in Debian_Unstable/x86_64 Check out the package for editing: osc checkout network:osmocom:nightly osmo-sysmon Last lines of build log: /var/cache/obs/worker/root_3/.pkgs/libosmocore-dev.deb: Input/output error (worker was cloud104:3) -- Configure notifications at
https://build.opensuse.org/my/subscriptions
openSUSE Build Service (
https://build.opensuse.org/
)
2 years, 9 months
1
0
0
0
Build failure of network:osmocom:nightly/osmo-bsc in openSUSE_Tumbleweed/i586
by OBS Notification
Visit
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/o…
Package network:osmocom:nightly/osmo-bsc failed to build in openSUSE_Tumbleweed/i586 Check out the package for editing: osc checkout network:osmocom:nightly osmo-bsc Last lines of build log: /var/cache/obs/worker/root_4/.pkgs/libosmo-mgcp-client-devel.rpm: Input/output error (worker was cloud104:4) -- Configure notifications at
https://build.opensuse.org/my/subscriptions
openSUSE Build Service (
https://build.opensuse.org/
)
2 years, 9 months
1
0
0
0
Build failure of network:osmocom:nightly/osmo_dia2gsup in Debian_Testing/x86_64
by OBS Notification
Visit
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/o…
Package network:osmocom:nightly/osmo_dia2gsup failed to build in Debian_Testing/x86_64 Check out the package for editing: osc checkout network:osmocom:nightly osmo_dia2gsup Last lines of build log: /var/cache/obs/worker/root_2/.pkgs/libstdc++6.deb: Input/output error (worker was cloud104:2) -- Configure notifications at
https://build.opensuse.org/my/subscriptions
openSUSE Build Service (
https://build.opensuse.org/
)
2 years, 9 months
1
0
0
0
Build failure of network:osmocom:latest/osmo-sip-connector in Debian_Testing/x86_64
by OBS Notification
Visit
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/os…
Package network:osmocom:latest/osmo-sip-connector failed to build in Debian_Testing/x86_64 Check out the package for editing: osc checkout network:osmocom:latest osmo-sip-connector Last lines of build log: Reading from filehandle failed at ./bs_worker line 1373. (worker was cloud104:1) -- Configure notifications at
https://build.opensuse.org/my/subscriptions
openSUSE Build Service (
https://build.opensuse.org/
)
2 years, 9 months
1
0
0
0
Build failure of network:osmocom:latest/simtrace2 in openSUSE_Tumbleweed/x86_64
by OBS Notification
Visit
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/si…
Package network:osmocom:latest/simtrace2 failed to build in openSUSE_Tumbleweed/x86_64 Check out the package for editing: osc checkout network:osmocom:latest simtrace2 Last lines of build log: Reading from filehandle failed at ./bs_worker line 1373. (worker was cloud104:1) -- Configure notifications at
https://build.opensuse.org/my/subscriptions
openSUSE Build Service (
https://build.opensuse.org/
)
2 years, 9 months
1
0
0
0
← Newer
1
...
141
142
143
144
145
146
147
...
186
Older →
Jump to page:
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
Results per page:
10
25
50
100
200