diff options
author | Pavel Roskin <plroskin@gmail.com> | 2016-02-13 20:41:07 -0800 |
---|---|---|
committer | Pavel Roskin <plroskin@gmail.com> | 2016-02-13 20:41:07 -0800 |
commit | 92a6833e9b808301bb3435bc1290f4b8d6242be5 (patch) | |
tree | 98b1175dafcc2d3177fce02b91b77a6f6eb1e620 /common/os_calls.c | |
parent | afa6ec97cc90ce45086df13ca7a5914a28175820 (diff) | |
download | xrdp-proprietary-92a6833e9b808301bb3435bc1290f4b8d6242be5.tar.gz xrdp-proprietary-92a6833e9b808301bb3435bc1290f4b8d6242be5.zip |
Fix typos
Diffstat (limited to 'common/os_calls.c')
-rw-r--r-- | common/os_calls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/os_calls.c b/common/os_calls.c index 0034cb5b..a4c98a75 100644 --- a/common/os_calls.c +++ b/common/os_calls.c @@ -1327,7 +1327,7 @@ tintptr APP_CC g_create_wait_obj_from_socket(tintptr socket, int write) { #ifdef _WIN32 - /* Create and return corresponding event handle for WaitForMultipleObjets */ + /* Create and return corresponding event handle for WaitForMultipleObjects */ WSAEVENT event; long lnetevent = 0; @@ -1979,7 +1979,7 @@ g_directory_exist(const char *dirname) { #if defined(_WIN32) return 0; // use GetFileAttributes and check return value - // is not -1 and FILE_ATTRIBUT_DIRECTORY bit is set + // is not -1 and FILE_ATTRIBUTE_DIRECTORY bit is set #else struct stat st; |