From ae603269d2fbb6784019d92dbe4396272bc4c12d Mon Sep 17 00:00:00 2001 From: cvpcs Date: Thu, 3 Jun 2010 11:33:40 -0500 Subject: switched to use of __BIONIC__ define instead of commenting lines out --- lib/readline/complete.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/readline/complete.c') 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) -- cgit v1.1