Commit 45009778 authored by Stefan Krah's avatar Stefan Krah

Issue #20306: Android is the only system that returns NULL for the pw_passwd

field.  Rather than cluttering the tests, translate the arguably more correct
"None" to an empty string.
parent c5c43b83
...@@ -75,7 +75,7 @@ mkpwent(struct passwd *p) ...@@ -75,7 +75,7 @@ mkpwent(struct passwd *p)
#define SETS(i,val) sets(v, i, val) #define SETS(i,val) sets(v, i, val)
SETS(setIndex++, p->pw_name); SETS(setIndex++, p->pw_name);
#if defined(HAVE_STRUCT_PASSWD_PW_PASSWD) #if defined(HAVE_STRUCT_PASSWD_PW_PASSWD) && !defined(__ANDROID__)
SETS(setIndex++, p->pw_passwd); SETS(setIndex++, p->pw_passwd);
#else #else
SETS(setIndex++, ""); SETS(setIndex++, "");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment