summaryrefslogtreecommitdiffstats
path: root/xrdp
diff options
context:
space:
mode:
authorPavel Roskin <plroskin@gmail.com>2016-06-21 16:30:15 -0700
committerPavel Roskin <plroskin@gmail.com>2016-06-21 16:30:15 -0700
commitae5bb5bf9c26b850bb80725e4748a08b55815002 (patch)
tree092c552018082c061132efedeb89b6945609f3d7 /xrdp
parent703fedded71700c8b1cc4181ea112828ea5b236b (diff)
downloadxrdp-proprietary-ae5bb5bf9c26b850bb80725e4748a08b55815002.tar.gz
xrdp-proprietary-ae5bb5bf9c26b850bb80725e4748a08b55815002.zip
Fix incorrect use of "it's" and "its", adjust wording
Diffstat (limited to 'xrdp')
-rw-r--r--xrdp/xrdp.c3
-rw-r--r--xrdp/xrdp_types.h2
-rw-r--r--xrdp/xrdp_wm.c4
-rw-r--r--xrdp/xrdpwin.c4
4 files changed, 6 insertions, 7 deletions
diff --git a/xrdp/xrdp.c b/xrdp/xrdp.c
index 88743cc6..740b0e1c 100644
--- a/xrdp/xrdp.c
+++ b/xrdp/xrdp.c
@@ -443,8 +443,7 @@ main(int argc, char **argv)
if (fd == -1)
{
- g_writeln("problem opening to xrdp.pid [%s]", pid_file);
- g_writeln("maybe its not running");
+ g_writeln("cannot open %s, maybe xrdp is not running", pid_file);
}
else
{
diff --git a/xrdp/xrdp_types.h b/xrdp/xrdp_types.h
index 4590d7a8..d6c7ccb1 100644
--- a/xrdp/xrdp_types.h
+++ b/xrdp/xrdp_types.h
@@ -216,7 +216,7 @@ struct xrdp_brush_item
{
int stamp;
/* expand this to a structure to handle more complicated brushes
- for now its 8x8 1bpp brushes only */
+ for now it's 8x8 1bpp brushes only */
char pattern[8];
};
diff --git a/xrdp/xrdp_wm.c b/xrdp/xrdp_wm.c
index 3b223902..ca466197 100644
--- a/xrdp/xrdp_wm.c
+++ b/xrdp/xrdp_wm.c
@@ -1725,8 +1725,8 @@ callback(long id, int msg, long param1, long param2, long param3, long param4)
rv = xrdp_wm_process_input_mousex(wm, param3, param1, param2);
break;
case 0x4444: /* invalidate, this is not from RDP_DATA_PDU_INPUT */
- /* like the rest, its from RDP_PDU_DATA with code 33 */
- /* its the rdp client asking for a screen update */
+ /* like the rest, it's from RDP_PDU_DATA with code 33 */
+ /* it's the rdp client asking for a screen update */
MAKERECT(rect, param1, param2, param3, param4);
rv = xrdp_bitmap_invalidate(wm->screen, &rect);
break;
diff --git a/xrdp/xrdpwin.c b/xrdp/xrdpwin.c
index 224efc0c..25ca6048 100644
--- a/xrdp/xrdpwin.c
+++ b/xrdp/xrdpwin.c
@@ -466,8 +466,8 @@ main(int argc, char **argv)
if (fd == -1)
{
- g_writeln("problem opening to xrdp.pid");
- g_writeln("maybe its not running");
+ g_writeln("cannot open %s, maybe xrdp is not running",
+ pid_file);
}
else
{