From 53928c0166dcc0acceaa995edb8551b48968b5dd Mon Sep 17 00:00:00 2001 From: Chuck Lever Date: Tue, 22 Jun 2010 12:44:44 -0400 Subject: libexport.a: Make export_add() static Clean up: export_add() is not called from outside of export.c, so make it a static helper. Signed-off-by: Chuck Lever Signed-off-by: Steve Dickson --- support/export/export.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'support/export/export.c') diff --git a/support/export/export.c b/support/export/export.c index 1800efd..eca833c 100644 --- a/support/export/export.c +++ b/support/export/export.c @@ -24,6 +24,7 @@ static int export_hash(char *); static void export_init(nfs_export *exp, nfs_client *clp, struct exportent *nep); +static void export_add(nfs_export *exp); static int export_check(const nfs_export *exp, const struct addrinfo *ai, const char *path); static nfs_export * @@ -151,10 +152,7 @@ export_dup(nfs_export *exp, const struct addrinfo *ai) return new; } -/* - * Add export entry to hash table - */ -void +static void export_add(nfs_export *exp) { exp_hash_table *p_tbl; -- cgit