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:
parent
1ff6911b3c
commit
2f09b52de8
5 changed files with 13 additions and 13 deletions
|
@ -144,7 +144,7 @@ int main (int argc, char *argv[])
|
|||
echo "*** If you have an old version installed, it is best to remove it, although"
|
||||
echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"],
|
||||
[ echo "*** The test program failed to compile or link. See the file config.log for the"
|
||||
echo "*** exact error that occured. This usually means SDL was incorrectly installed"
|
||||
echo "*** exact error that occurred. This usually means SDL was incorrectly installed"
|
||||
echo "*** or that you have moved SDL since it was installed. In the latter case, you"
|
||||
echo "*** may want to edit the sdl-config script: $SDL_CONFIG" ])
|
||||
CFLAGS="$ac_save_CFLAGS"
|
||||
|
|
|
@ -517,7 +517,7 @@ static void cache_init(bool enable) {
|
|||
|
||||
#if (C_HAVE_MPROTECT)
|
||||
if(mprotect(cache_code_link_blocks,CACHE_TOTAL+CACHE_MAXSIZE+PAGESIZE_TEMP,PROT_WRITE|PROT_READ|PROT_EXEC))
|
||||
LOG_MSG("Setting excute permission on the code cache has failed!");
|
||||
LOG_MSG("Setting execute permission on the code cache has failed!");
|
||||
#endif
|
||||
CacheBlock * block=cache_getblock();
|
||||
cache.block.first=block;
|
||||
|
@ -612,7 +612,7 @@ static void cache_reset(void) {
|
|||
|
||||
#if (C_HAVE_MPROTECT)
|
||||
if(mprotect(cache_code_link_blocks,CACHE_TOTAL+CACHE_MAXSIZE+PAGESIZE_TEMP,PROT_WRITE|PROT_READ|PROT_EXEC))
|
||||
LOG_MSG("Setting excute permission on the code cache has failed!");
|
||||
LOG_MSG("Setting execute permission on the code cache has failed!");
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
@ -603,7 +603,7 @@ static void cache_init(bool enable) {
|
|||
|
||||
#if (C_HAVE_MPROTECT)
|
||||
if(mprotect(cache_code_link_blocks,CACHE_TOTAL+CACHE_MAXSIZE+PAGESIZE_TEMP,PROT_WRITE|PROT_READ|PROT_EXEC))
|
||||
LOG_MSG("Setting excute permission on the code cache has failed");
|
||||
LOG_MSG("Setting execute permission on the code cache has failed");
|
||||
#endif
|
||||
CacheBlockDynRec * block=cache_getblock();
|
||||
cache.block.first=block;
|
||||
|
|
|
@ -737,7 +737,7 @@ fatDrive::fatDrive(const char *sysFilename, Bit32u bytesector, Bit32u cylsector,
|
|||
}
|
||||
}
|
||||
|
||||
if(m==4) LOG_MSG("No good partiton found in image.");
|
||||
if(m==4) LOG_MSG("No good partition found in image.");
|
||||
|
||||
partSectOff = startSector;
|
||||
} else {
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue