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;