mailing list of musl libc
 help / color / mirror / code / Atom feed
c655135e254fd168fdc2f43cc5bbfbeafad072f1 blob 742 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
 
#include "pwf.h"

static FILE *f;

void setpwent()
{
	if (f) fclose(f);
	f = 0;
}

weak_alias(setpwent, endpwent);

struct passwd *getpwent()
{
	static char *line;
	static struct passwd pw;
	size_t size=0;
	if (!f) f = fopen("/etc/passwd", "rbe");
	if (!f) return 0;
	return __getpwent_a(f, &pw, &line, &size);
}

struct passwd *getpwuid(uid_t uid)
{
	struct passwd *pw;
	int errno_saved;
	setpwent();
	while ((pw=getpwent()) && pw->pw_uid != uid);
	errno_saved = errno;
	endpwent();
	errno = errno_saved;
	return pw;
}

struct passwd *getpwnam(const char *name)
{
	struct passwd *pw;
	int errno_saved;
	setpwent();
	while ((pw=getpwent()) && strcmp(pw->pw_name, name));
	errno_saved = errno;
	endpwent();
	errno = errno_saved;
	return pw;
}
debug log:

solving c655135 ...
found c655135 in https://git.vuxu.org/mirror/musl/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).