=== removed file 'plugins.d/Makefile' --- plugins.d/Makefile 2008-07-21 01:50:31 +0000 +++ plugins.d/Makefile 1970-01-01 00:00:00 +0000 @@ -1,8 +0,0 @@ -# See the parent directory Makefile - -all: - $(MAKE) -C .. all - -.PHONY : clean -clean : - $(MAKE) -C .. clean === modified file 'plugins.d/mandosclient.c' --- plugins.d/mandosclient.c 2008-07-20 23:34:51 +0000 +++ plugins.d/mandosclient.c 2008-07-21 02:33:00 +0000 @@ -314,7 +314,6 @@ int start_mandos_communcation(char *ip, uint16_t port){ int ret, tcp_sd; struct sockaddr_in6 to; - struct in6_addr ip_addr; encrypted_session es; char *buffer = NULL; char *decrypted_buffer; @@ -346,7 +345,7 @@ memset(&to,0,sizeof(to)); to.sin6_family = AF_INET6; - ret = inet_pton(AF_INET6, ip, &ip_addr); + ret = inet_pton(AF_INET6, ip, &to.sin6_addr); if (ret < 0 ){ perror("inet_pton"); return -1;