diff options
author | Luke Leighton <lkcl@samba.org> | 1999-11-29 21:47:14 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-11-29 21:47:14 +0000 |
commit | 0d44ff9a765f2e89be8b0ee99ec7c907e7c225c3 (patch) | |
tree | d0c87722e19013a188c29096d35205ba675c7d89 /source3/lib | |
parent | 44334ace985b55295dfc1c93e92d46e01d39fb97 (diff) | |
download | samba-0d44ff9a765f2e89be8b0ee99ec7c907e7c225c3.tar.gz samba-0d44ff9a765f2e89be8b0ee99ec7c907e7c225c3.tar.bz2 samba-0d44ff9a765f2e89be8b0ee99ec7c907e7c225c3.zip |
attempting to resolve the issue that multiple servers often specified in
parameters to connect to \PIPE\NETLOGON.
(This used to be commit d1986ade30bdcac1f49707221a3e5a5ae597ce62)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util_array.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/source3/lib/util_array.c b/source3/lib/util_array.c index 71f7046d62..62be3f17bd 100644 --- a/source3/lib/util_array.c +++ b/source3/lib/util_array.c @@ -91,19 +91,6 @@ char* add_chars_to_array(uint32 *len, char ***array, const char *name) } -void free_con_array(uint32 num_entries, struct cli_connection **entries) -{ - void(*fn)(void*) = (void(*)(void*))&cli_connection_free; - free_void_array(num_entries, (void**)entries, *fn); -} - -struct cli_connection* add_con_to_array(uint32 *len, struct cli_connection ***array, struct cli_connection *con) -{ - return (struct cli_connection*)add_item_to_array(len, - (void***)array, (void*)con); - -} - static uint32 *uint32_dup(const uint32* from) { if (from != NULL) |