Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-02-01 21:41:29 +0300
committerChristopher Faylor <me@cgf.cx>2003-02-01 21:41:29 +0300
commit6688a0618e8cbdfb89b3fd3c670dcd913cd22a08 (patch)
treebfa6a15ece248ad932ad1cc8dbca23a07cec47ec /winsup/cygwin/passwd.cc
parent05d2a9a4fb0d5fb79f9696dd41dd1010f4eb2b24 (diff)
* grp.cc (getgrent32): Only refresh group entries when at beginning.
(internal_getgrsid): Only refresh if uninitialized. (internal_getgrent): Ditto. * passwd.cc (getpwent): Only refresh passwd entries when at beginning. (pwdgrp::read_passwd): linebuf *cannot* be NO_COPY. (internal_getpwsid): Only refresh if uninitialized. (getpass): No need to refresh passwd data here. * pwdgrp.h (refresh): Eliminate default.
Diffstat (limited to 'winsup/cygwin/passwd.cc')
-rw-r--r--winsup/cygwin/passwd.cc11
1 files changed, 5 insertions, 6 deletions
diff --git a/winsup/cygwin/passwd.cc b/winsup/cygwin/passwd.cc
index 5dd871234..1a6654c21 100644
--- a/winsup/cygwin/passwd.cc
+++ b/winsup/cygwin/passwd.cc
@@ -82,7 +82,8 @@ pwdgrp::read_passwd ()
myself->uid != (__uid32_t) pw->pw_uid &&
!internal_getpwuid (myself->uid))))
{
- static char NO_COPY linebuf[1024]; // must be static
+ static char linebuf[1024]; // must be static and
+ // should not be NO_COPY
(void) cygheap->user.ontherange (CH_HOME, NULL);
snprintf (linebuf, sizeof (linebuf), "%s:*:%lu:%lu:,%s:%s:/bin/sh",
cygheap->user.name (),
@@ -102,7 +103,7 @@ internal_getpwsid (cygsid &sid)
char *ptr1, *ptr2, *endptr;
char sid_string[128] = {0,','};
- pr.refresh ();
+ pr.refresh (false);
if (sid.string (sid_string + 2))
{
@@ -252,8 +253,8 @@ getpwnam_r (const char *nam, struct passwd *pwd, char *buffer, size_t bufsize, s
extern "C" struct passwd *
getpwent (void)
{
- pr.refresh ();
-
+ if (pw_pos == 0)
+ pr.refresh (true);
if (pw_pos < pr.curr_lines)
return passwd_buf + pw_pos++;
@@ -290,8 +291,6 @@ getpass (const char * prompt)
char *pass=_reent_winsup ()->_pass;
struct termios ti, newti;
- pr.refresh ();
-
cygheap_fdget fhstdin (0);
if (fhstdin < 0)