From: Larry Hastings Date: Tue, 5 Aug 2014 06:06:16 +0000 (+1000) Subject: More fixes for the unhappy AMD FreeBSD 9 buildbot. Fingers crossed. X-Git-Tag: v3.5.0a1~1121 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b1dc112dca375158b59134617fe58b103742804f;p=python More fixes for the unhappy AMD FreeBSD 9 buildbot. Fingers crossed. --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 25bfa5ded6..d953b5ca65 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3509,7 +3509,7 @@ os_lchmod_impl(PyModuleDef *module, path_t *path, int mode) { int res; Py_BEGIN_ALLOW_THREADS - res = lchmod(path.narrow, i); + res = lchmod(path->narrow, mode); Py_END_ALLOW_THREADS if (res < 0) { path_error(path); @@ -3661,7 +3661,7 @@ os_lchflags_impl(PyModuleDef *module, path_t *path, unsigned long flags) { int res; Py_BEGIN_ALLOW_THREADS - res = lchflags(path.narrow, flags); + res = lchflags(path->narrow, flags); Py_END_ALLOW_THREADS if (res < 0) { return path_error(path);