libuv: Update from 1.20.0 to 1.20.1
[termux-packages] / packages / python2 / Modules-pwdmodule.c.patch
1 diff -u -r ../Python-2.7.10/Modules/pwdmodule.c ./Modules/pwdmodule.c
2 --- ../Python-2.7.10/Modules/pwdmodule.c 2015-05-23 12:09:20.000000000 -0400
3 +++ ./Modules/pwdmodule.c 2015-09-16 17:42:37.197613340 -0400
4 @@ -75,7 +75,7 @@
5 #endif
6 PyStructSequence_SET_ITEM(v, setIndex++, _PyInt_FromUid(p->pw_uid));
7 PyStructSequence_SET_ITEM(v, setIndex++, _PyInt_FromGid(p->pw_gid));
8 -#ifdef __VMS
9 +#if defined (__VMS) || defined(__ANDROID__)
10 SETS(setIndex++, "");
11 #else
12 SETS(setIndex++, p->pw_gecos);