proj: Correct parsing in python
This commit is contained in:
@@ -2355,9 +2355,9 @@ int sym(getaddrinfo)(const char *restrict node, const char *restrict service, co
|
||||
}
|
||||
const int ret = __real_getaddrinfo(node, service, hints, res);
|
||||
if (res != NULL) {
|
||||
msg("return %i:%s; res=%qi", ret, getaddrinfoerror(ret), *res);
|
||||
msg("return %i:%s; errno %s; res=%qi", ret, getaddrinfoerror(ret), strerrorname_np(errno), *res);
|
||||
} else {
|
||||
msg("return %i:%s", ret, getaddrinfoerror(ret));
|
||||
msg("return %i:%s; errno %s", ret, getaddrinfoerror(ret), strerrorname_np(errno));
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user