changeset 4905:ab47138f5c8f HEAD

And remove a bit more code.
author Timo Sirainen <tss@iki.fi>
date Fri, 15 Dec 2006 19:17:21 +0200
parents f98ee68ab23f
children 0c3c948412c5
files src/lib-auth/auth-client.c
diffstat 1 files changed, 0 insertions(+), 18 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib-auth/auth-client.c	Fri Dec 15 19:16:26 2006 +0200
+++ b/src/lib-auth/auth-client.c	Fri Dec 15 19:17:21 2006 +0200
@@ -116,24 +116,6 @@
 	auth_client_connect_missing_servers(client);
 }
 
-static void auth_client_connect_missing_servers_list(struct auth_client *client,
-						     const char *list)
-{
-	const char *const *path;
-
-	client->reconnect = FALSE;
-
-	t_push();
-	path = t_strsplit(list, ":");
-	for (; *path != NULL; path++) {
-		if (auth_server_connection_find_path(client, *path) == NULL) {
-			if (auth_server_connection_new(client, *path) == NULL)
-				client->reconnect = TRUE;
-		}
-	}
-	t_pop();
-}
-
 void auth_client_connect_missing_servers(struct auth_client *client)
 {
 	DIR *dirp;