summaryrefslogtreecommitdiffstats
path: root/tests
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 /tests
parent703fedded71700c8b1cc4181ea112828ea5b236b (diff)
downloadxrdp-proprietary-ae5bb5bf9c26b850bb80725e4748a08b55815002.tar.gz
xrdp-proprietary-ae5bb5bf9c26b850bb80725e4748a08b55815002.zip
Fix incorrect use of "it's" and "its", adjust wording
Diffstat (limited to 'tests')
-rw-r--r--tests/gtcp_proxy/gtcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gtcp_proxy/gtcp.c b/tests/gtcp_proxy/gtcp.c
index 4b218a3c..504138bf 100644
--- a/tests/gtcp_proxy/gtcp.c
+++ b/tests/gtcp_proxy/gtcp.c
@@ -33,7 +33,7 @@ int tcp_socket_create(void)
unsigned int option_len;
#endif
- /* in win32 a socket is an unsigned int, in linux, its an int */
+ /* in win32 a socket is an unsigned int, in linux, it's an int */
if ((rv = (int) socket(PF_INET, SOCK_STREAM, 0)) < 0)
return -1;
@@ -193,7 +193,7 @@ int tcp_socket(void)
unsigned int option_len;
#endif
- /* in win32 a socket is an unsigned int, in linux, its an int */
+ /* in win32 a socket is an unsigned int, in linux, it's an int */
if ((rv = (int) socket(PF_INET, SOCK_STREAM, 0)) < 0)
return -1;