-
-
Notifications
You must be signed in to change notification settings - Fork 6.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MSDOS] name-clash in url.c #9585
Conversation
Since the commit 764c958, there was a new function resolve_ip(). This clashes with an internal function in Watt-32. Hence undefine it in libcurl.
Since |
Or just rename the function?
|
oh yes, that's actually even better |
Ok. Fine by me. |
Perhaps I misunderstood something. Should I rename |
Rename the function to what it actually does.
No need now for `#undef resolve_ip`.
Thanks! |
In commit 764c958, the new function
resolve_ip()
clashes with an internal function in Watt-32. Hence undefine it in libcurl.