diff options
author | Paul Green <paulg@samba.org> | 2003-04-30 17:48:46 +0000 |
---|---|---|
committer | Paul Green <paulg@samba.org> | 2003-04-30 17:48:46 +0000 |
commit | 5a6138082024d17eedab317038e8969c9f536530 (patch) | |
tree | 04e2c55cb287d4c8ddf3b202c898cc8c401a0a64 /source3/Makefile.in | |
parent | 72e786496d644ef48f1f40d8e556e4bbcae8c364 (diff) | |
download | samba-5a6138082024d17eedab317038e8969c9f536530.tar.gz samba-5a6138082024d17eedab317038e8969c9f536530.tar.bz2 samba-5a6138082024d17eedab317038e8969c9f536530.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 10bf65d335b7d7076484172faa2b4689ed437552)
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 4f08187f33..3d99315777 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 \ |