aboutsummaryrefslogtreecommitdiffstats
path: root/lib/readline/complete.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/readline/complete.c')
-rw-r--r--lib/readline/complete.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/readline/complete.c b/lib/readline/complete.c
index 38249d2..2c7e696 100644
--- a/lib/readline/complete.c
+++ b/lib/readline/complete.c
@@ -1953,7 +1953,7 @@ rl_username_completion_function (text, state)
const char *text;
int state;
{
-#if defined (__WIN32__) || defined (__OPENNT)
+#if defined (__BIONIC__) || (__WIN32__) || defined (__OPENNT)
return (char *)NULL;
#else /* !__WIN32__ && !__OPENNT) */
static char *username = (char *)NULL;
@@ -1970,7 +1970,7 @@ rl_username_completion_function (text, state)
username = savestring (&text[first_char_loc]);
namelen = strlen (username);
-// setpwent ();
+ setpwent ();
}
#if defined (HAVE_GETPWENT)