repo.or.cz
/
tomato
/
davidwu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Correct PPTP server firewall rules chain.
[tomato/davidwu.git]
/
release
/
src
/
router
/
mdadm
/
pwgr.c
blob
a07de336849549d1d029a5022a53767ccedfa8ff
1
2
/*
3
* We cannot link a static binary with passwd/group support, so
4
* just do without
5
*/
6
#include <stdlib.h>
7
#include <pwd.h>
8
#include <grp.h>
9
10
struct
passwd
*
getpwnam
(
const char
*
name
)
11
{
12
return
NULL
;
13
}
14
struct
group
*
getgrnam
(
const char
*
name
)
15
{
16
return
NULL
;
17
}