]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
Fixup for python 2
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Wed, 27 Feb 2019 14:22:55 +0000 (14:22 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Wed, 27 Feb 2019 14:22:55 +0000 (14:22 +0000)
git-svn-id: file:///svn/unbound/trunk@5126 be551aaa-1e26-0410-a405-d3ace91eadb9

pythonmod/pythonmod.c

index 25e1bc08a1bfd2dd97045c465ad6a6bc8ca57a7d..459ae1e8cf2d2019b05e57d6e8d5ef61c155f08a 100644 (file)
@@ -313,8 +313,8 @@ int pythonmod_init(struct module_env* env, int id)
    /* uses python to open the file, this works on other platforms,
     * eg. Windows, to open the file in the correct mode for python */
 #if PY_MAJOR_VERSION < 3
-   PyObject* PyFileObject = PyFile_FromString(pe->fname, "r");
-   script_py = PyFile_AsFile(PyFileObject, pe->fname, 1);
+   PyFileObject = PyFile_FromString((char*)pe->fname, "r");
+   script_py = PyFile_AsFile(PyFileObject);
 #else
    script_py = _Py_fopen(pe->fname, "r");
 #endif