~ubuntu-branches/ubuntu/quantal/open-iscsi/quantal

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <unistd.h>
#include <pwd.h>
#include <sys/errno.h>
#include <sys/types.h>

static struct passwd root_pw = {
	.pw_name = "root",
};

struct passwd*
getpwuid(uid_t uid)
{
	if (uid == 0)
		return &root_pw;
	else {
		errno = ENOENT;
		return 0;
	}
}