diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-07-07 06:53:22 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-07-07 06:53:22 (GMT) |
commit | 5f587b41669885f94fe71b4cba83701d8d81bd2d (patch) | |
tree | 66c661f0ff6c8d6ff1e730f31bc30d7543b6192a /Modules/nismodule.c | |
parent | 79fa5ab7b0744ab5b74ecf2de0a17ef604e0097e (diff) | |
download | cpython-5f587b41669885f94fe71b4cba83701d8d81bd2d.zip cpython-5f587b41669885f94fe71b4cba83701d8d81bd2d.tar.gz cpython-5f587b41669885f94fe71b4cba83701d8d81bd2d.tar.bz2 |
Merged revisions 73874 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r73874 | amaury.forgeotdarc | 2009-07-07 08:51:26 +0200 (mar., 07 juil. 2009) | 9 lines
Merged revisions 73873 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73873 | amaury.forgeotdarc | 2009-07-07 08:49:41 +0200 (mar., 07 juil. 2009) | 2 lines
#6420: Fix a compilation warning in the nis module, for OpenBSD and FreeBSD.
........
................
Diffstat (limited to 'Modules/nismodule.c')
-rw-r--r-- | Modules/nismodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/nismodule.c b/Modules/nismodule.c index c2646eb..4be4657 100644 --- a/Modules/nismodule.c +++ b/Modules/nismodule.c @@ -89,7 +89,7 @@ nis_mapname (char *map, int *pfix) return map; } -#ifdef __APPLE__ +#if defined(__APPLE__) || defined(__OpenBSD__) || defined(__FreeBSD__) typedef int (*foreachfunc)(unsigned long, char *, int, char *, int, void *); #else typedef int (*foreachfunc)(int, char *, int, char *, int, char *); |