mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
2003-08-23 Casper S. Hornstrup <chorns@users.sourceforge.net>
* apps/tests/tcpsvr/tcpsvr.c (main): Fix multiline string constant. svn path=/trunk/; revision=5797
This commit is contained in:
parent
2ef07b88f9
commit
5f2c2b55be
2 changed files with 8 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
|||
2003-08-23 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
||||
|
||||
* apps/tests/tcpsvr/tcpsvr.c (main): Fix multiline string constant.
|
||||
|
||||
2003-08-23 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
||||
|
||||
* apps/utils/stats/stats.c (ReadLine): Handle unix end-of-line characters.
|
||||
|
|
|
@ -65,10 +65,10 @@ int main (int argc, char *argv[]) {
|
|||
|
||||
while(1) {
|
||||
|
||||
printf("%s: \n
|
||||
To start test, Please telnet to localhost (127.0.0.1) port 23 \n
|
||||
When connected input raw data followed by End of Line\n
|
||||
Test is now running on TCP port %u\n",argv[0],SERVER_PORT);
|
||||
printf("%s: \n"
|
||||
"To start test, Please telnet to localhost (127.0.0.1) port 23 \n"
|
||||
"When connected input raw data followed by End of Line\n"
|
||||
"Test is now running on TCP port %u\n",argv[0],SERVER_PORT);
|
||||
|
||||
cliLen = sizeof(cliAddr);
|
||||
newSd = accept(sd, (struct sockaddr *) &cliAddr, &cliLen);
|
||||
|
|
Loading…
Reference in a new issue