PDA

View Full Version : Can not select non-default port for server



suziwon
04-24-2003, 02:00 PM
There is a bug in the MySEQ 1.8a server that makes it impossible to select a port other than 5555 for the server to run on.

The line in main(...):
if (argc == 2 ) {
port = atoi(argv[2]);
...

should read more like
if ( argc > 1 ) {
port = atoi(argv[1]);
....


only editor I have right now is notepad so no line numbers or a diff. :(

Suziwon

cavemanbob
04-24-2003, 03:18 PM
Quite correct, I'll fix that right away.