summaryrefslogtreecommitdiffstats
path: root/sesman
diff options
context:
space:
mode:
authorPavel Roskin <plroskin@gmail.com>2016-01-30 17:39:25 -0800
committerPavel Roskin <plroskin@gmail.com>2016-01-30 17:39:25 -0800
commit02c981e796af1413ec4332b98ea3b7fcc69481c8 (patch)
tree320eff2ca4fb167aca2d079c3fca273c5f9403fd /sesman
parentf8cb1588efe15eaa1258a1b5615cf33676eddb9a (diff)
downloadxrdp-proprietary-02c981e796af1413ec4332b98ea3b7fcc69481c8.tar.gz
xrdp-proprietary-02c981e796af1413ec4332b98ea3b7fcc69481c8.zip
More spelling fixes found by codespell and aspell
Diffstat (limited to 'sesman')
-rw-r--r--sesman/libscp/libscp_lock.c2
-rw-r--r--sesman/libscp/libscp_lock.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/sesman/libscp/libscp_lock.c b/sesman/libscp/libscp_lock.c
index 4db05422..d35e3c9c 100644
--- a/sesman/libscp/libscp_lock.c
+++ b/sesman/libscp/libscp_lock.c
@@ -57,7 +57,7 @@ scp_lock_fork_request(void)
if (lock_fork_blockers_count == 0)
{
- /* if noone is blocking fork(), then we're allowed to fork */
+ /* if no one is blocking fork(), then we're allowed to fork */
sem_post(&lock_fork_req);
}
diff --git a/sesman/libscp/libscp_lock.h b/sesman/libscp/libscp_lock.h
index b4e93c52..ae2c361b 100644
--- a/sesman/libscp/libscp_lock.h
+++ b/sesman/libscp/libscp_lock.h
@@ -52,8 +52,8 @@ scp_lock_fork_release(void);
*
* @brief starts a section that is critical for forking
*
- * starts a section that is critical for forking, that is noone can fork()
- * while i'm in a critical section. But if someone wanted to fork we have
+ * starts a section that is critical for forking, that is no one can fork()
+ * while I'm in a critical section. But if someone wanted to fork we have
* to wait until he finishes with lock_fork_release()
*
* @return