From aa4c771fc359e097a3a6c3637f78c7bed7c450e9 Mon Sep 17 00:00:00 2001 From: Chuck Lever Date: Mon, 22 Mar 2010 10:10:59 -0400 Subject: libexport.a: Remove dead code Clean up: I can't find any call sites for client_find() or client_match(). Signed-off-by: Chuck Lever Signed-off-by: Steve Dickson --- support/export/client.c | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'support/export/client.c') diff --git a/support/export/client.c b/support/export/client.c index 6236561..f8c84de 100644 --- a/support/export/client.c +++ b/support/export/client.c @@ -211,28 +211,6 @@ client_freeall(void) } } -nfs_client * -client_find(struct hostent *hp) -{ - nfs_client *clp; - int i; - - for (i = 0; i < MCL_MAXTYPES; i++) { - for (clp = clientlist[i]; clp; clp = clp->m_next) { - if (!client_check(clp, hp)) - continue; -#ifdef notdef - if (clp->m_type == MCL_FQDN) - return clp; - return client_dup(clp, hp); -#else - return clp; -#endif - } - } - return NULL; -} - struct hostent * client_resolve(struct in_addr addr) { -- cgit