Module: kamailio Branch: master Commit: 5497d15766d25625b4704a3bd3e884ef2f1149da URL: https://github.com/kamailio/kamailio/commit/5497d15766d25625b4704a3bd3e884ef...
Author: Bastian Triller bastian.triller@gmail.com Committer: Henning Westerholt hw@gilawa.com Date: 2022-05-08T17:30:14+02:00
doc: Fix typos
---
Modified: doc/misc/NEWS Modified: doc/tutorials/locking.txt
---
Diff: https://github.com/kamailio/kamailio/commit/5497d15766d25625b4704a3bd3e884ef... Patch: https://github.com/kamailio/kamailio/commit/5497d15766d25625b4704a3bd3e884ef...
---
diff --git a/doc/misc/NEWS b/doc/misc/NEWS index 9b62dd39c1..09b63a72b4 100644 --- a/doc/misc/NEWS +++ b/doc/misc/NEWS @@ -338,7 +338,7 @@ modules: the retransmissions which would otherwise be challenged). The major advantage is greatly enhanced security (extremely small probability of - a succesfull replay attack) combine with support + a successful replay attack) combine with support for cached credentials (if the UAs do support qop and auth) - nc_array_size - size of the array used for storing diff --git a/doc/tutorials/locking.txt b/doc/tutorials/locking.txt index 7507a5d002..3ff12f6c85 100644 --- a/doc/tutorials/locking.txt +++ b/doc/tutorials/locking.txt @@ -109,7 +109,7 @@ Locking & unlocking: void lock_get(gen_lock_t* lock); - lock (mutex down) void lock_release(gen_lock_t* lock); - unlock (mutex up) int lock_try(gen_lock_t* lock); - tries to lock and returns 0 - if succesfull, -1 if not (this is + if successful, -1 if not (this is a non-blocking lock_get())
@@ -164,7 +164,7 @@ Locking & unlocking: void lock_set_get(lock_set_t* s, int i); void lock_set_release(lock_set_t* s, int i); int lock_set_try(lock_set_t* s, int i); - tries to lock the i-th lock - from the set. If succesfull + from the set. If successful returns 0, if not -1.
Example: