|
From: Brad H. <br...@fr...> - 2010-11-22 05:08:27
|
I noted a few spelling errors. Enclosed patch addresses those.
Index: doc/rdesktop.1
===================================================================
--- doc/rdesktop.1 (revision 1601)
+++ doc/rdesktop.1 (working copy)
@@ -154,7 +154,7 @@
to modem (56 Kbps)). Setting experience to b[roadband] enables menu
animations and full window dragging. Setting experience to l[an] will
also enable the desktop wallpaper. Setting experience to m[odem]
-disables all (including themes). Experience can also be a hexidecimal
+disables all (including themes). Experience can also be a hexadecimal
number containing the flags.
.TP
.BR "-P"
@@ -211,7 +211,7 @@
Enables redirection of one or more smart-cards. You can provide
static name binding between linux and windows. To do this you
can use optional parameters as described: <Scard Name> - device name in
-Linux/Unix enviroment, <Alias Name> - device name shown in Windows enviroment
+Linux/Unix environment, <Alias Name> - device name shown in Windows environment
<Vendor Name> - optional device vendor name. For list of examples run
rdesktop without parameters.
.TP
@@ -262,7 +262,7 @@
.IP "\fB23\fP"
Licensing protocol was not completed
.IP "\fB24\fP"
-Incorrect client license enryption
+Incorrect client license encryption
.IP "\fB25\fP"
Can't upgrade license
.IP "\fB26\fP"
@@ -270,7 +270,7 @@
.IP "\fB62\fP"
The local client window was closed
.IP "\fB63\fP"
-Some other, unknown error occured
+Some other, unknown error occurred
.IP "\fB64\fP"
Command line usage error
.IP "\fB69\fP"
Index: rdesktop.c
===================================================================
--- rdesktop.c (revision 1601)
+++ rdesktop.c (working copy)
@@ -163,7 +163,7 @@
fprintf(stderr, " -K: keep window manager key bindings\n");
fprintf(stderr, " -S: caption button size (single application mode)\n");
fprintf(stderr, " -T: window title\n");
- fprintf(stderr, " -N: enable numlock syncronization\n");
+ fprintf(stderr, " -N: enable numlock synchronization\n");
fprintf(stderr, " -X: embed into another window with a given id.\n");
fprintf(stderr, " -a: connection colour depth\n");
fprintf(stderr, " -z: enable rdp compression\n");
@@ -202,14 +202,14 @@
fprintf(stderr, " '-r scard[:\"Scard Name\"=\"Alias Name[;Vendor Name]\"[,...]]\n");
fprintf(stderr, " example: -r scard:\"eToken PRO 00 00\"=\"AKS ifdh 0\"\n");
fprintf(stderr,
- " \"eToken PRO 00 00\" -> Device in Linux/Unix enviroment\n");
+ " \"eToken PRO 00 00\" -> Device in Linux/Unix environment\n");
fprintf(stderr,
- " \"AKS ifdh 0\" -> Device shown in Windows enviroment \n");
+ " \"AKS ifdh 0\" -> Device shown in Windows environment \n");
fprintf(stderr, " example: -r scard:\"eToken PRO 00 00\"=\"AKS ifdh 0;AKS\"\n");
fprintf(stderr,
- " \"eToken PRO 00 00\" -> Device in Linux/Unix enviroment\n");
+ " \"eToken PRO 00 00\" -> Device in Linux/Unix environment\n");
fprintf(stderr,
- " \"AKS ifdh 0\" -> Device shown in Windows enviroment \n");
+ " \"AKS ifdh 0\" -> Device shown in Windows environment \n");
fprintf(stderr,
" \"AKS\" -> Device vendor name \n");
#endif
@@ -316,7 +316,7 @@
break;
case exDiscReasonLicenseErrClientEncryption:
- text = "Incorrect client license enryption";
+ text = "Incorrect client license encryption";
retval = EXRD_LIC_ENC;
break;
@@ -1252,7 +1252,7 @@
Needle may be escaped by a backslash, in
that case we ignore that particular needle.
return value: returns next src pointer, for
- succesive executions, like in a while loop
+ successive executions, like in a while loop
if retval is 0, then there are no more args.
pitfalls:
src is modified. 0x00 chars are inserted to
Brad
|