diff options
| author | Guido van Rossum <guido@python.org> | 1995-02-07 15:38:56 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1995-02-07 15:38:56 +0000 |
| commit | 03e8ffa34587f609ea05e54f93d60b5116bdea54 (patch) | |
| tree | b004c8e89eb761db02c9956b80195fdc9d1aa041 | |
| parent | f5c6d47e96470e66a82c0d7103d100fae61d9526 (diff) | |
| download | cpython-git-03e8ffa34587f609ea05e54f93d60b5116bdea54.tar.gz | |
patches for NeXT weirdness
| -rw-r--r-- | Modules/grpmodule.c | 6 | ||||
| -rw-r--r-- | Modules/pwdmodule.c | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/Modules/grpmodule.c b/Modules/grpmodule.c index ecb9ade839..cff9d83f35 100644 --- a/Modules/grpmodule.c +++ b/Modules/grpmodule.c @@ -49,7 +49,13 @@ static object *mkgrent(p) v = mkvalue("(sslO)", p->gr_name, p->gr_passwd, +#if defined(NeXT) && defined(_POSIX_SOURCE) && defined(__LITTLE_ENDIAN__) +/* Correct a bug present on Intel machines in NextStep 3.2 and 3.3; + for later versions you may have to remove this */ + (long)p->gr_short_pad, /* ugh-NeXT broke the padding */ +#else (long)p->gr_gid, +#endif w); DECREF(w); return v; diff --git a/Modules/pwdmodule.c b/Modules/pwdmodule.c index a9253c2d36..ec0e848f7b 100644 --- a/Modules/pwdmodule.c +++ b/Modules/pwdmodule.c @@ -36,8 +36,15 @@ static object *mkpwent(p) return mkvalue("(ssllsss)", p->pw_name, p->pw_passwd, +#if defined(NeXT) && defined(_POSIX_SOURCE) && defined(__LITTLE_ENDIAN__) +/* Correct a bug present on Intel machines in NextStep 3.2 and 3.3; + for later versions you may have to remove this */ + (long)p->pw_short_pad1, /* ugh-NeXT broke the padding */ + (long)p->pw_short_pad2, +#else (long)p->pw_uid, (long)p->pw_gid, +#endif p->pw_gecos, p->pw_dir, p->pw_shell); |
