From 19f129654ef467eb48b76b4e95a7b167b3d2c59c Mon Sep 17 00:00:00 2001 From: Michael Tokarev Date: Thu, 6 Mar 2025 13:21:21 +0300 Subject: [PATCH] spelling: dont --- channels/audin/client/audin_main.c | 2 +- channels/rdpdr/client/rdpdr_main.c | 2 +- channels/tsmf/client/gstreamer/tsmf_gstreamer.c | 2 +- client/common/cmdline.c | 6 +++--- cmake/WarnUnmaintained.cmake | 2 +- cmake/WebView2.cmake | 2 +- libfreerdp/crypto/certificate.c | 2 +- server/common/server.c | 6 +++--- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/channels/audin/client/audin_main.c b/channels/audin/client/audin_main.c index 6f7306d00..eaf7281d0 100644 --- a/channels/audin/client/audin_main.c +++ b/channels/audin/client/audin_main.c @@ -740,7 +740,7 @@ static UINT audin_plugin_terminated(IWTSPlugin* pPlugin) if (error != CHANNEL_RC_OK) { WLog_Print(audin->log, WLOG_ERROR, "Free failed with errorcode %" PRIu32 "", error); - // dont stop on error + // don't stop on error } audin->device = NULL; diff --git a/channels/rdpdr/client/rdpdr_main.c b/channels/rdpdr/client/rdpdr_main.c index 63010367f..67feb00db 100644 --- a/channels/rdpdr/client/rdpdr_main.c +++ b/channels/rdpdr/client/rdpdr_main.c @@ -394,7 +394,7 @@ static LRESULT CALLBACK hotplug_proc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM if ((error = rdpdr_send_device_list_remove_request( rdpdr, 1, ids))) { - // dont end on error, just report ? + // don't end on error, just report ? WLog_Print( rdpdr->log, WLOG_ERROR, "rdpdr_send_device_list_remove_request failed " diff --git a/channels/tsmf/client/gstreamer/tsmf_gstreamer.c b/channels/tsmf/client/gstreamer/tsmf_gstreamer.c index 13847eef9..81d7095fd 100644 --- a/channels/tsmf/client/gstreamer/tsmf_gstreamer.c +++ b/channels/tsmf/client/gstreamer/tsmf_gstreamer.c @@ -718,7 +718,7 @@ static BOOL tsmf_gstreamer_decodeEx(ITSMFDecoder* decoder, const BYTE* data, UIN useTimestamps = FALSE; } - /* If no timestamps exist then we dont want to look at the timestamp values (bit 7) */ + /* If no timestamps exist then we don't want to look at the timestamp values (bit 7) */ if (extensions & 0x00000040) { DEBUG_TSMF("Ignoring the timestamps - none - bit 7"); diff --git a/client/common/cmdline.c b/client/common/cmdline.c index 31f143e7d..bbeec7a19 100644 --- a/client/common/cmdline.c +++ b/client/common/cmdline.c @@ -6198,7 +6198,7 @@ void freerdp_client_warn_unmaintained(int argc, char* argv[]) WLog_Print_unchecked( log, log_level, " Developers hang out in https://matrix.to/#/#FreeRDP:matrix.org?via=matrix.org " - "- dont hesitate to ask some questions. (replies might take some time depending " + "- don't hesitate to ask some questions. (replies might take some time depending " "on your timezone) - if you intend using this component write us a message"); } @@ -6221,7 +6221,7 @@ void freerdp_client_warn_experimental(int argc, char* argv[]) WLog_Print_unchecked( log, log_level, " Developers hang out in https://matrix.to/#/#FreeRDP:matrix.org?via=matrix.org " - "- dont hesitate to ask some questions. (replies might take some time depending " + "- don't hesitate to ask some questions. (replies might take some time depending " "on your timezone)"); } @@ -6244,6 +6244,6 @@ void freerdp_client_warn_deprecated(int argc, char* argv[]) log, log_level, "The project is hosted at https://github.com/freerdp/freerdp and " " developers hang out in https://matrix.to/#/#FreeRDP:matrix.org?via=matrix.org " - "- dont hesitate to ask some questions. (replies might take some time depending " + "- don't hesitate to ask some questions. (replies might take some time depending " "on your timezone)"); } diff --git a/cmake/WarnUnmaintained.cmake b/cmake/WarnUnmaintained.cmake index 62ff5eae4..aa1746fa0 100644 --- a/cmake/WarnUnmaintained.cmake +++ b/cmake/WarnUnmaintained.cmake @@ -8,7 +8,7 @@ macro(warn_unmaintained name) message(WARNING "[unmaintained] Developers hang out in https://matrix.to/#/#FreeRDP:matrix.org?via=matrix.org") message( WARNING - "[unmaintained] - dont hesitate to ask some questions. (replies might take some time depending on your timezone)" + "[unmaintained] - don't hesitate to ask some questions. (replies might take some time depending on your timezone)" ) message(WARNING "[unmaintained] - if you intend using this component write us a message") endmacro() diff --git a/cmake/WebView2.cmake b/cmake/WebView2.cmake index 52f012b62..3b54e433c 100644 --- a/cmake/WebView2.cmake +++ b/cmake/WebView2.cmake @@ -9,7 +9,7 @@ if(WIN32) unset(WEBVIEW2_PACKAGE_DIR CACHE) endif() find_path(WEBVIEW2_PACKAGE_DIR NAMES "build/native/include/WebView2.h" - NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH # dont prepend CMAKE_PREFIX + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH # don't prepend CMAKE_PREFIX ) if(NOT WEBVIEW2_PACKAGE_DIR) message(WARNING "WebView2 SDK not found locally, downloading ${WEBVIEW2_VERSION} ...") diff --git a/libfreerdp/crypto/certificate.c b/libfreerdp/crypto/certificate.c index 206d055f3..03743435f 100644 --- a/libfreerdp/crypto/certificate.c +++ b/libfreerdp/crypto/certificate.c @@ -724,7 +724,7 @@ static BOOL certificate_process_server_public_signature(rdpCertificate* certific * allowed under FIPS. Since the validation is not protecting against anything since the * private/public keys are well known and documented in MS-RDPBCGR section 5.3.3.1, we are not * gaining any security by using MD5 for signature comparison. Rather then use MD5 - * here we just dont do the validation to avoid its use. Historically, freerdp has been ignoring + * here we just don't do the validation to avoid its use. Historically, freerdp has been ignoring * a failed validation anyways. */ #if defined(CERT_VALIDATE_MD5) diff --git a/server/common/server.c b/server/common/server.c index 62f126f7c..0f2c910a2 100644 --- a/server/common/server.c +++ b/server/common/server.c @@ -185,7 +185,7 @@ void freerdp_server_warn_unmaintained(int argc, char* argv[]) WLog_Print_unchecked( log, log_level, " Developers hang out in https://matrix.to/#/#FreeRDP:matrix.org?via=matrix.org " - "- dont hesitate to ask some questions. (replies might take some time depending " + "- don't hesitate to ask some questions. (replies might take some time depending " "on your timezone) - if you intend using this component write us a message"); } @@ -208,7 +208,7 @@ void freerdp_server_warn_experimental(int argc, char* argv[]) WLog_Print_unchecked( log, log_level, " Developers hang out in https://matrix.to/#/#FreeRDP:matrix.org?via=matrix.org " - "- dont hesitate to ask some questions. (replies might take some time depending " + "- don't hesitate to ask some questions. (replies might take some time depending " "on your timezone)"); } @@ -231,6 +231,6 @@ void freerdp_server_warn_deprecated(int argc, char* argv[]) log, log_level, "The project is hosted at https://github.com/freerdp/freerdp and " " developers hang out in https://matrix.to/#/#FreeRDP:matrix.org?via=matrix.org " - "- dont hesitate to ask some questions. (replies might take some time depending " + "- don't hesitate to ask some questions. (replies might take some time depending " "on your timezone)"); }