Module: kamailio
Branch: master
Commit: 54a61e648c06cb8f5a1888d8ad43d411f80f229d
URL: https://github.com/kamailio/kamailio/commit/54a61e648c06cb8f5a1888d8ad43d41…
Author: Henning Westerholt <hw(a)kamailio.org>
Committer: Henning Westerholt <hw(a)kamailio.org>
Date: 2018-10-05T21:41:33+02:00
tm: small spelling fix (bellow -> below)
---
Modified: src/modules/tm/t_cancel.c
Modified: src/modules/tm/t_reply.c
---
Diff: https://github.com/kamailio/kamailio/commit/54a61e648c06cb8f5a1888d8ad43d41…
Patch: https://github.com/kamailio/kamailio/commit/54a61e648c06cb8f5a1888d8ad43d41…
---
diff --git a/src/modules/tm/t_cancel.c b/src/modules/tm/t_cancel.c
index 49751c9958..3a6da2d87e 100644
--- a/src/modules/tm/t_cancel.c
+++ b/src/modules/tm/t_cancel.c
@@ -173,7 +173,7 @@ int cancel_all_uacs(struct cell *trans, int how)
}
-/* should be called directly only if one of the condition bellow is true:
+/* should be called directly only if one of the condition below is true:
* - prepare_cancel_branch or prepare_to_cancel returned true for this branch
* - buffer value was 0 and then set to BUSY in an atomic op.:
* if (atomic_cmpxchg_long(&buffer, 0, BUSY_BUFFER)==0).
diff --git a/src/modules/tm/t_reply.c b/src/modules/tm/t_reply.c
index 88ec5dd629..8a95fe758d 100644
--- a/src/modules/tm/t_reply.c
+++ b/src/modules/tm/t_reply.c
@@ -1417,7 +1417,7 @@ static enum rps t_should_relay_response( struct cell *Trans , int new_code,
/* look if the callback perhaps replied transaction; it also
* covers the case in which a transaction is replied localy
* on CANCEL -- then it would make no sense to proceed to
- * new branches bellow
+ * new branches below
*/
if (Trans->uas.status >= 200) {
*should_store=0;
Module: kamailio
Branch: master
Commit: 586b766adae1d2476d6bb50e3ac17324d16c9a9b
URL: https://github.com/kamailio/kamailio/commit/586b766adae1d2476d6bb50e3ac1732…
Author: Henning Westerholt <hw(a)kamailio.org>
Committer: Henning Westerholt <hw(a)kamailio.org>
Date: 2018-10-05T21:41:33+02:00
dispatcher: small spelling fix (bellow -> below)
---
Modified: src/modules/dispatcher/doc/dispatcher_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/586b766adae1d2476d6bb50e3ac1732…
Patch: https://github.com/kamailio/kamailio/commit/586b766adae1d2476d6bb50e3ac1732…
---
diff --git a/src/modules/dispatcher/doc/dispatcher_admin.xml b/src/modules/dispatcher/doc/dispatcher_admin.xml
index b409c5208d..34a4a1559a 100644
--- a/src/modules/dispatcher/doc/dispatcher_admin.xml
+++ b/src/modules/dispatcher/doc/dispatcher_admin.xml
@@ -1123,7 +1123,7 @@ modparam("dispatcher", "ds_db_extra_attrs", "socket=socket;pref=prefix")
used to control congestion tolerance. When facing congestion the weight of
a gateway is lowered by 1 for every ms of estimated congestion, a 'rweight'
value of 50 is recommended. See the example "configuring load balancing with
- congestion detection" bellow.
+ congestion detection" below.
</para>
<para>
The congestion estimation is done using an EWMA (see ds_latency_estimator_alpha).
Module: kamailio
Branch: master
Commit: 82220a00e534c954ba2a9ec37f1b7cfc9c34660f
URL: https://github.com/kamailio/kamailio/commit/82220a00e534c954ba2a9ec37f1b7cf…
Author: Henning Westerholt <hw(a)kamailio.org>
Committer: Henning Westerholt <hw(a)kamailio.org>
Date: 2018-10-05T21:41:33+02:00
core: small spelling fix (bellow -> below)
---
Modified: src/core/flags.c
Modified: src/core/receive.c
Modified: src/core/tcp_read.c
---
Diff: https://github.com/kamailio/kamailio/commit/82220a00e534c954ba2a9ec37f1b7cf…
Patch: https://github.com/kamailio/kamailio/commit/82220a00e534c954ba2a9ec37f1b7cf…
---
diff --git a/src/core/flags.c b/src/core/flags.c
index 45839d90cd..ae2d32486b 100644
--- a/src/core/flags.c
+++ b/src/core/flags.c
@@ -302,7 +302,7 @@ static int fixup_t_flag(void** param, int param_no)
if (*code < FL_MAX && token==0) {
LM_ERR("TM module: too high flag number: %s (%d)\n; lower number"
- " bellow %d reserved\n", (char *) (*param), *code, FL_MAX );
+ " below %d reserved\n", (char *) (*param), *code, FL_MAX );
goto error;
}
diff --git a/src/core/receive.c b/src/core/receive.c
index b14ebf8fb9..6be8fdea4d 100644
--- a/src/core/receive.c
+++ b/src/core/receive.c
@@ -202,7 +202,7 @@ int receive_msg(char *buf, unsigned int len, struct receive_info *rcv_info)
/* fill in msg */
msg->buf = buf;
msg->len = len;
- /* zero termination (termination of orig message bellow not that
+ /* zero termination (termination of orig message below not that
* useful as most of the work is done with scratch-pad; -jiri */
/* buf[len]=0; */ /* WARNING: zero term removed! */
msg->rcv = *rcv_info;
diff --git a/src/core/tcp_read.c b/src/core/tcp_read.c
index 8cab30f2c4..4c1821a4bb 100644
--- a/src/core/tcp_read.c
+++ b/src/core/tcp_read.c
@@ -1333,7 +1333,7 @@ static int hep3_process_msg(char* tcpbuf, unsigned int len,
/* fill in msg */
msg.buf=tcpbuf;
msg.len=len;
- /* zero termination (termination of orig message bellow not that
+ /* zero termination (termination of orig message below not that
* useful as most of the work is done with scratch-pad; -jiri */
/* buf[len]=0; */ /* WARNING: zero term removed! */
msg.rcv=*rcv_info;
Module: kamailio
Branch: master
Commit: 1015636bb7d2f73451e8293b6ebb7f0ea9b84142
URL: https://github.com/kamailio/kamailio/commit/1015636bb7d2f73451e8293b6ebb7f0…
Author: Henning Westerholt <hw(a)kamailio.org>
Committer: Henning Westerholt <hw(a)kamailio.org>
Date: 2018-10-05T21:41:33+02:00
docs: small spelling fix (bellow -> below)
---
Modified: doc/tutorials/seruser/intro.xml
Modified: doc/tutorials/seruser/operation.xml
---
Diff: https://github.com/kamailio/kamailio/commit/1015636bb7d2f73451e8293b6ebb7f0…
Patch: https://github.com/kamailio/kamailio/commit/1015636bb7d2f73451e8293b6ebb7f0…
---
diff --git a/doc/tutorials/seruser/intro.xml b/doc/tutorials/seruser/intro.xml
index 39928b6d42..bdbb5c5790 100644
--- a/doc/tutorials/seruser/intro.xml
+++ b/doc/tutorials/seruser/intro.xml
@@ -1271,7 +1271,7 @@ route{
For example, we use the UA functionality to shield
SMS gateway and instant message store from SIP transactional
processing.
- The simple example bellow issues a log report on receipt
+ The simple example below issues a log report on receipt
of a new transaction.
If we did not use a stateful UA, every single request retransmission
would cause the application to be re-executed which would result in
diff --git a/doc/tutorials/seruser/operation.xml b/doc/tutorials/seruser/operation.xml
index 02aa2f1cb1..9d15731587 100644
--- a/doc/tutorials/seruser/operation.xml
+++ b/doc/tutorials/seruser/operation.xml
@@ -417,7 +417,7 @@ warning: IP extract from warning activated to be more informational
</programlisting>
<para>
The following SIP message causes then logging output as shown
- bellow.
+ below.
</para>
<programlisting>
REGISTER sip:192.168.2.16 SIP/2.0
Hello,
short note to mark the freezing of development for Kamailio v5.2 series.
For few weeks, please do not push new features in the master branch.
Once the branch 5.2 is created (expected to happen in 3-4 weeks from
now), the master branch becomes again open for new feature. Meanwhile
the focus has to be on testing current code.
Work on related tools (e.g., kamctl) or documentation can still be done
as well as getting the new modules in 5.2 in good shape, plus adding
exports to kemi interface (which should not interfere with old code).
The entire testing phase is expected to be 4 to 6 weeks, then the
release of v5.2.0 will be out.
Cheers,
Daniel
--
Daniel-Constantin Mierla
www.twitter.com/miconda -- www.linkedin.com/in/miconda
Kamailio Advanced Training - www.asipto.com
Kamailio World Conference - www.kamailioworld.com