search for: use_private_pwd_grp

Displaying 1 result from an estimated 1 matches for "use_private_pwd_grp".

2003 May 19
0
[PATCH] getpwnam() implementation in tftpd.c
...need to install the /etc/nsswitch.conf +# configuration file and the required libnss_* libraries. This generally +# makes your embedded system quite a bit larger... If you leave this on, +# tftpd will directly use the /etc/password, /etc/group files (and your +# system will be smaller as well). +USE_PRIVATE_PWD_GRP = false + +ifeq ($(strip $(USE_PRIVATE_PWD_GRP)),true) + CFLAGS += -DUSE_PRIVATE_PWD_GRP +endif + + OBJS = tftpd.$(O) tftpsubs.$(O) recvfrom.$(O) misc.$(O) $(TFTPDOBJS) all: tftpd$(X) tftpd.8 diff -urN tftp-hpa-0.34.orig/tftpd/tftpd.c tftp-hpa-0.34/tftpd/tftpd.c --- tftp-hpa-0.34.orig/tftpd/...