diff options
author | Paul Green <paulg@samba.org> | 2003-04-30 17:35:56 +0000 |
---|---|---|
committer | Paul Green <paulg@samba.org> | 2003-04-30 17:35:56 +0000 |
commit | 4e2bd11d3e48c75efa6afd1b1d2c8721f627cbb2 (patch) | |
tree | 34cccaf836f631f1714145634be1df69fa573bf0 /source3/Makefile.in | |
parent | 28cef867c761ac87101e3049628cfe2a073e65f2 (diff) | |
download | samba-4e2bd11d3e48c75efa6afd1b1d2c8721f627cbb2.tar.gz samba-4e2bd11d3e48c75efa6afd1b1d2c8721f627cbb2.tar.bz2 samba-4e2bd11d3e48c75efa6afd1b1d2c8721f627cbb2.zip |
Refactor existing sock_exec() and socketpair_tcp() functions into their own
source file. I will be making changes to sock_exec to work on VOS, which
has a blocking connect() call, but first I want to get it in its own source
file so that it can be called from a test program.
(This used to be commit 2dd18ca0cfd4d793067b9b712554565965db0af1)
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r-- | source3/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index a515109934..c3380eaf28 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -167,7 +167,7 @@ LIB_OBJ = lib/charcnv.o lib/debug.o lib/fault.o \ lib/xfile.o lib/wins_srv.o \ lib/util_str.o lib/clobber.o lib/util_sid.o lib/util_uuid.o \ lib/util_unistr.o lib/util_file.o lib/data_blob.o \ - lib/util.o lib/util_sock.o lib/util_sec.o \ + lib/util.o lib/util_sock.o lib/sock_exec.o lib/util_sec.o \ lib/talloc.o lib/hash.o lib/substitute.o lib/fsusage.o \ lib/ms_fnmatch.o lib/select.o lib/messages.o \ lib/tallocmsg.o lib/dmallocmsg.o \ |