1
0
Fork 0

Fix typos reported by lintian and change DosBox to DOSBox.

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@4161
This commit is contained in:
Peter Veenstra 2018-09-14 19:53:55 +00:00
parent 1ff6911b3c
commit 2f09b52de8
5 changed files with 13 additions and 13 deletions

View file

@ -854,7 +854,7 @@ public:
// Help on connect command
if(strcasecmp("connect", helpStr) == 0) {
WriteOut("IPXNET CONNECT opens a connection to an IPX tunneling server running on another\n");
WriteOut("DosBox session. The \"address\" parameter specifies the IP address or host name\n");
WriteOut("DOSBox session. The \"address\" parameter specifies the IP address or host name\n");
WriteOut("of the server computer. One can also specify the UDP port to use. By default\n");
WriteOut("IPXNET uses port 213, the assigned IANA port for IPX tunneling, for its\nconnection.\n\n");
WriteOut("The syntax for IPXNET CONNECT is:\n\n");
@ -870,9 +870,9 @@ public:
}
// Help on the startserver command
if(strcasecmp("startserver", helpStr) == 0) {
WriteOut("IPXNET STARTSERVER starts and IPX tunneling server on this DosBox session. By\n");
WriteOut("IPXNET STARTSERVER starts and IPX tunneling server on this DOSBox session. By\n");
WriteOut("default, the server will accept connections on UDP port 213, though this can be\n");
WriteOut("changed. Once the server is started, DosBox will automatically start a client\n");
WriteOut("changed. Once the server is started, DOSBox will automatically start a client\n");
WriteOut("connection to the IPX tunneling server.\n\n");
WriteOut("The syntax for IPXNET STARTSERVER is:\n\n");
WriteOut("IPXNET STARTSERVER <port>\n\n");
@ -880,9 +880,9 @@ public:
}
// Help on the stop server command
if(strcasecmp("stopserver", helpStr) == 0) {
WriteOut("IPXNET STOPSERVER stops the IPX tunneling server running on this DosBox\nsession.");
WriteOut("IPXNET STOPSERVER stops the IPX tunneling server running on this DOSBox\nsession.");
WriteOut(" Care should be taken to ensure that all other connections have\nterminated ");
WriteOut("as well sinnce stoping the server may cause lockups on other\nmachines still using ");
WriteOut("as well since stopping the server may cause lockups on other\nmachines still using ");
WriteOut("the IPX tunneling server.\n\n");
WriteOut("The syntax for IPXNET STOPSERVER is:\n\n");
WriteOut("IPXNET STOPSERVER\n\n");
@ -899,7 +899,7 @@ public:
}
// Help on the status command
if(strcasecmp("status", helpStr) == 0) {
WriteOut("IPXNET STATUS reports the current state of this DosBox's sessions IPX tunneling\n");
WriteOut("IPXNET STATUS reports the current state of this DOSBox's sessions IPX tunneling\n");
WriteOut("network. For a list of the computers connected to the network use the IPXNET \n");
WriteOut("PING command.\n\n");
WriteOut("The syntax for IPXNET STATUS is:\n\n");
@ -910,7 +910,7 @@ public:
void Run(void)
{
WriteOut("IPX Tunneling utility for DosBox\n\n");
WriteOut("IPX Tunneling utility for DOSBox\n\n");
if(!cmd->GetCount()) {
WriteOut("The syntax of this command is:\n\n");
WriteOut("IPXNET [ CONNECT | DISCONNECT | STARTSERVER | STOPSERVER | PING | HELP |\n STATUS ]\n\n");
@ -960,7 +960,7 @@ public:
}
if(strcasecmp("stopserver", temp_line.c_str()) == 0) {
if(!isIpxServer) {
WriteOut("IPX Tunneling Server not running in this DosBox session.\n");
WriteOut("IPX Tunneling Server not running in this DOSBox session.\n");
} else {
isIpxServer = false;
DisconnectFromServer(false);