From 0d44ff9a765f2e89be8b0ee99ec7c907e7c225c3 Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Mon, 29 Nov 1999 21:47:14 +0000 Subject: attempting to resolve the issue that multiple servers often specified in parameters to connect to \PIPE\NETLOGON. (This used to be commit d1986ade30bdcac1f49707221a3e5a5ae597ce62) --- source3/lib/util_array.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'source3/lib') 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) -- cgit