(cherry picked from commit 5497d15766d25625b4704a3bd3e884ef2f1149da)
... | ... |
@@ -338,7 +338,7 @@ modules: |
338 | 338 |
the retransmissions which would otherwise be |
339 | 339 |
challenged). The major advantage is greatly |
340 | 340 |
enhanced security (extremely small probability of |
341 |
- a succesfull replay attack) combine with support |
|
341 |
+ a successful replay attack) combine with support |
|
342 | 342 |
for cached credentials (if the UAs do support qop |
343 | 343 |
and auth) |
344 | 344 |
- nc_array_size - size of the array used for storing |
... | ... |
@@ -109,7 +109,7 @@ Locking & unlocking: |
109 | 109 |
void lock_get(gen_lock_t* lock); - lock (mutex down) |
110 | 110 |
void lock_release(gen_lock_t* lock); - unlock (mutex up) |
111 | 111 |
int lock_try(gen_lock_t* lock); - tries to lock and returns 0 |
112 |
- if succesfull, -1 if not (this is |
|
112 |
+ if successful, -1 if not (this is |
|
113 | 113 |
a non-blocking lock_get()) |
114 | 114 |
|
115 | 115 |
|
... | ... |
@@ -164,7 +164,7 @@ Locking & unlocking: |
164 | 164 |
void lock_set_get(lock_set_t* s, int i); |
165 | 165 |
void lock_set_release(lock_set_t* s, int i); |
166 | 166 |
int lock_set_try(lock_set_t* s, int i); - tries to lock the i-th lock |
167 |
- from the set. If succesfull |
|
167 |
+ from the set. If successful |
|
168 | 168 |
returns 0, if not -1. |
169 | 169 |
|
170 | 170 |
Example: |