diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-05-13 08:03:47 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-05-13 08:03:47 +0000 |
commit | 56c473b795bad9d29430bf794f9204bd096c9c3d (patch) | |
tree | c68260e00899576f2568594e8845d5b368ecc487 /Makefile.in | |
parent | df5e03da7b1c81d014388b7aa0ac764b97e9dee2 (diff) | |
download | rsync-56c473b795bad9d29430bf794f9204bd096c9c3d.tar.gz rsync-56c473b795bad9d29430bf794f9204bd096c9c3d.tar.bz2 rsync-56c473b795bad9d29430bf794f9204bd096c9c3d.zip |
added hosts allow and hosts deny support. I ended up writing my own as
the tcpd code is not quite what I wanted.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index f1e94a65..43785150 100644 --- a/Makefile.in +++ b/Makefile.in @@ -23,7 +23,7 @@ SHELL=/bin/sh LIBOBJ=lib/getopt.o lib/fnmatch.o lib/zlib.o lib/compat.o OBJS1=rsync.o exclude.o util.o md4.o main.o checksum.o match.o syscall.o log.o OBJS2=options.o flist.o io.o compat.o hlink.o token.o uidlist.o socket.o -DAEMON_OBJ = params.o loadparm.o clientserver.o +DAEMON_OBJ = params.o loadparm.o clientserver.o access.o OBJS=$(OBJS1) $(OBJS2) $(DAEMON_OBJ) $(LIBOBJ) # note that the -I. is needed to handle config.h when using VPATH |