equal
deleted
inserted
replaced
524 char *p; |
524 char *p; |
525 for (p = connection_string; *p != '\0'; p++) { |
525 for (p = connection_string; *p != '\0'; p++) { |
526 if (*p == '#') { |
526 if (*p == '#') { |
527 *p = '\0'; |
527 *p = '\0'; |
528 *player = ++p; |
528 *player = ++p; |
529 while (IsValidAsciiChar(*p, CS_NUMERAL)) p++; |
529 while (IsValidChar(*p, CS_NUMERAL)) p++; |
530 if (*p == '\0') break; |
530 if (*p == '\0') break; |
531 } else if (*p == ':') { |
531 } else if (*p == ':') { |
532 *port = p + 1; |
532 *port = p + 1; |
533 *p = '\0'; |
533 *p = '\0'; |
534 } |
534 } |