https://bugs.winehq.org/show_bug.cgi?id=45397
Andreas Schneider asn@cryptomilk.org changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |asn@cryptomilk.org
--- Comment #6 from Andreas Schneider asn@cryptomilk.org --- (In reply to Thomas Faller from comment #1)
This is because wine uses "inet_aton" to parse the ip. "inet_aton" acceepts this address because of specific parsing rules. The rules can be found here: https://linux.die.net/man/3/inet_aton
libssh uses inet_pton() on Unix platforms which works correctly!
rc = inet_pton(AF_INET, str, &dest);
Maybe it is a good idea to switch if inet_aton() doesn't work correctly.