From cba5484be09d4ee39fbeb1aa3734f584c092abf1 Mon Sep 17 00:00:00 2001 From: Jimmy Date: Wed, 13 Jul 2022 23:41:42 +0300 Subject: [PATCH] GUACAMOLE-1636: Fix a typo mistake `recieved`. --- src/protocols/rdp/bitmap.c | 2 +- src/protocols/rdp/gdi.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/protocols/rdp/bitmap.c b/src/protocols/rdp/bitmap.c index ac4d9794..05f9e214 100644 --- a/src/protocols/rdp/bitmap.c +++ b/src/protocols/rdp/bitmap.c @@ -149,7 +149,7 @@ BOOL guac_rdp_bitmap_setsurface(rdpContext* context, rdpBitmap* bitmap, BOOL pri else { - /* Make sure that the recieved bitmap is not NULL before processing */ + /* Make sure that the received bitmap is not NULL before processing */ if (bitmap == NULL) { guac_client_log(client, GUAC_LOG_INFO, "NULL bitmap found in bitmap_setsurface instruction."); return TRUE; diff --git a/src/protocols/rdp/gdi.c b/src/protocols/rdp/gdi.c index f0ba4881..3a55130c 100644 --- a/src/protocols/rdp/gdi.c +++ b/src/protocols/rdp/gdi.c @@ -248,7 +248,7 @@ BOOL guac_rdp_gdi_memblt(rdpContext* context, MEMBLT_ORDER* memblt) { int x_src = memblt->nXSrc; int y_src = memblt->nYSrc; - /* Make sure that the recieved bitmap is not NULL before processing */ + /* Make sure that the received bitmap is not NULL before processing */ if (bitmap == NULL) { guac_client_log(client, GUAC_LOG_INFO, "NULL bitmap found in memblt instruction."); return TRUE;