From: Christian Heimes Date: Wed, 19 Jun 2013 00:06:29 +0000 (+0200) Subject: Issue #18259: Declare sethostname in socketmodule.c for AIX X-Git-Tag: v3.4.0a1~449^2~2^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d2774c7d097bdc1929cb071b74f7b85ddb6ed789;p=python Issue #18259: Declare sethostname in socketmodule.c for AIX --- diff --git a/Misc/NEWS b/Misc/NEWS index a9eeeffd37..fa89eb3593 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -32,6 +32,8 @@ Core and Builtins Library ------- +- Issue #18259: Declare sethostname in socketmodule.c for AIX + - Issue #18167: cgi.FieldStorage no more fails to handle multipart/form-data when \r\n appears at end of 65535 bytes without other newlines. diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 9b58a11bd5..2c8a29cc92 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -4132,6 +4132,11 @@ socket_sethostname(PyObject *self, PyObject *args) Py_buffer buf; int res, flag = 0; +#ifdef _AIX +/* issue #18259, not declared in any useful header file */ +extern int sethostname(const char *, size_t); +#endif + if (!PyArg_ParseTuple(args, "S:sethostname", &hnobj)) { PyErr_Clear(); if (!PyArg_ParseTuple(args, "O&:sethostname",