summaryrefslogtreecommitdiffstats
path: root/libxrdp/xrdp_orders.c
diff options
context:
space:
mode:
authorPavel Roskin <plroskin@gmail.com>2016-05-03 13:07:13 -0700
committerPavel Roskin <plroskin@gmail.com>2016-05-04 23:33:30 -0700
commitca9cbcafc826dc4c3ff6c54fcab3d81789ae5807 (patch)
treed9ef08b59192ba39b968fd3d6877f946b8bd1ba0 /libxrdp/xrdp_orders.c
parentfdb146740f2e544008e90214854b7a4aa2472e84 (diff)
downloadxrdp-proprietary-ca9cbcafc826dc4c3ff6c54fcab3d81789ae5807.tar.gz
xrdp-proprietary-ca9cbcafc826dc4c3ff6c54fcab3d81789ae5807.zip
Typo fixes
Diffstat (limited to 'libxrdp/xrdp_orders.c')
-rw-r--r--libxrdp/xrdp_orders.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libxrdp/xrdp_orders.c b/libxrdp/xrdp_orders.c
index d7a2d017..697d2a5a 100644
--- a/libxrdp/xrdp_orders.c
+++ b/libxrdp/xrdp_orders.c
@@ -1014,18 +1014,18 @@ xrdp_orders_pat_blt(struct xrdp_orders *self, int x, int y,
brush = &blank_brush;
}
- if (brush->x_orgin != self->orders_state.pat_blt_brush.x_orgin)
+ if (brush->x_origin != self->orders_state.pat_blt_brush.x_origin)
{
present |= 0x0080;
- out_uint8(self->out_s, brush->x_orgin);
- self->orders_state.pat_blt_brush.x_orgin = brush->x_orgin;
+ out_uint8(self->out_s, brush->x_origin);
+ self->orders_state.pat_blt_brush.x_origin = brush->x_origin;
}
- if (brush->y_orgin != self->orders_state.pat_blt_brush.y_orgin)
+ if (brush->y_origin != self->orders_state.pat_blt_brush.y_origin)
{
present |= 0x0100;
- out_uint8(self->out_s, brush->y_orgin);
- self->orders_state.pat_blt_brush.y_orgin = brush->y_orgin;
+ out_uint8(self->out_s, brush->y_origin);
+ self->orders_state.pat_blt_brush.y_origin = brush->y_origin;
}
if (brush->style != self->orders_state.pat_blt_brush.style)