Doc tweaks and some whitespace.

This commit is contained in:
Bill Currie 2011-08-02 17:32:36 +09:00
parent 76f894a29f
commit eba66b1dde
2 changed files with 6 additions and 3 deletions

View File

@ -113,7 +113,8 @@ struct qsockaddr {
/** Connect Reply:
\arg \b long \c port
\arg \b long \c port The port which the client is to use for further
communication.
*/
#define CCREP_ACCEPT 0x81

View File

@ -1269,8 +1269,10 @@ _Datagram_Connect (const char *host)
if (ret > 0) {
// is it from the right place?
if (sfunc.AddrCompare (&readaddr, &sendaddr) != 0) {
Sys_MaskPrintf (SYS_NET, "%s ", sfunc.AddrToString (&readaddr));
Sys_MaskPrintf (SYS_NET, "%s\n", sfunc.AddrToString (&sendaddr));
Sys_MaskPrintf (SYS_NET, "%s ",
sfunc.AddrToString (&readaddr));
Sys_MaskPrintf (SYS_NET, "%s\n",
sfunc.AddrToString (&sendaddr));
ret = 0;
continue;
}